summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Echo/db_patches/echo_push_provider.sql')
-rw-r--r--Echo/db_patches/echo_push_provider.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/Echo/db_patches/echo_push_provider.sql b/Echo/db_patches/echo_push_provider.sql
new file mode 100644
index 00000000..2e9f27b1
--- /dev/null
+++ b/Echo/db_patches/echo_push_provider.sql
@@ -0,0 +1,6 @@
+-- Table for normalizing push providers; intended for use with the NameTableStore construct.
+CREATE TABLE /*_*/echo_push_provider (
+ epp_id TINYINT UNSIGNED NOT NULL PRIMARY KEY,
+ -- push provider name; expected values are 'fcm' and 'apns'
+ epp_name TINYTEXT NOT NULL
+) /*$wgDBTableOptions*/;