mediawiki-extensions-Echo/sql/echo_push_provider.sql
Umherirrender 0a387990a5 schema: Move all sql files to own folder
Change-Id: Icb227fb5c23eabba8df9e06833779d009218755b
2022-06-11 08:26:48 +02:00

7 lines
317 B
SQL

-- 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 auto_increment,
-- push provider name; expected values are 'fcm' and 'apns'
epp_name TINYBLOB NOT NULL
) /*$wgDBTableOptions*/;