mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
7 lines
302 B
MySQL
7 lines
302 B
MySQL
|
-- 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*/;
|