mediawiki-extensions-Echo/db_patches/echo_push_provider.sql
Michael Holloway 27a6a1fb00 Change echo_push_* column types from TEXT to BLOB
Per DBA review feedback, BLOB is more commonly used and may be
preferable.

Bug: T246716
Change-Id: I499d8c548088453d3182174f6f035977e8802240
2020-09-14 21:35:01 +00: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*/;