mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-14 19:35:38 +00:00
c490dc8164
Per Manuel Arostegui in T263817#7033384. As I understand, this is just for consistency with tables in MediaWiki core. Given that all tables are created with "DEFAULT CHARSET=binary" (as defined in $wgDBTableOptions), there is no difference in behavior between these two types. Bug: T263817 Change-Id: I8dabcb45e447e0bf60b119fd4f7d6532147a44fc
17 lines
807 B
SQL
17 lines
807 B
SQL
-- This file is automatically generated using maintenance/generateSchemaSql.php.
|
|
-- Source: sql/discussiontools_subscription.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
CREATE TABLE /*_*/discussiontools_subscription (
|
|
sub_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
sub_item BLOB NOT NULL, sub_namespace INTEGER DEFAULT 0 NOT NULL,
|
|
sub_title BLOB NOT NULL, sub_section BLOB NOT NULL,
|
|
sub_state INTEGER DEFAULT 1 NOT NULL,
|
|
sub_user INTEGER UNSIGNED NOT NULL,
|
|
sub_created BLOB NOT NULL, sub_notified BLOB DEFAULT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX discussiontools_subscription_itemuser ON /*_*/discussiontools_subscription (sub_item, sub_user);
|
|
|
|
CREATE INDEX discussiontools_subscription_user ON /*_*/discussiontools_subscription (sub_user);
|