mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
27a6a1fb00
Per DBA review feedback, BLOB is more commonly used and may be preferable. Bug: T246716 Change-Id: I499d8c548088453d3182174f6f035977e8802240
7 lines
265 B
SQL
7 lines
265 B
SQL
-- Table for normalizing APNS push message topics, for use with the NameTableStore construct.
|
|
CREATE TABLE /*_*/echo_push_topic (
|
|
ept_id TINYINT UNSIGNED NOT NULL PRIMARY KEY auto_increment,
|
|
-- full topic text
|
|
ept_text TINYBLOB NOT NULL
|
|
) /*$wgDBTableOptions*/;
|