Index: trunk/extensions/ArticleFeedback/sql/AddArticleFeedbackStatsTypeTable.sql |
— | — | @@ -1,8 +1,8 @@ |
2 | | -CREATE TABLE IF NOT EXISTS /*_*/ article_feedback_stats_types ( |
| 2 | +CREATE TABLE IF NOT EXISTS /*_*/article_feedback_stats_types ( |
3 | 3 | afst_id integer unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT, |
4 | 4 | afst_type varbinary(255) NOT NULL |
5 | 5 | ) /*$wgDBTableOptions*/; |
6 | | -CREATE UNIQUE INDEX /*i*/ afst_type ON /*_*/ article_feedback_stats_types( afst_type ); |
| 6 | +CREATE UNIQUE INDEX /*i*/afst_type ON /*_*/article_feedback_stats_types( afst_type ); |
7 | 7 | |
8 | 8 | -- Pre-populate table with stat types |
9 | 9 | INSERT INTO article_feedback_stats_types ( afst_type ) VALUES ( 'highs_and_lows' ); |