Index: trunk/extensions/CentralNotice/patches/patch-notice_languages.sql |
— | — | @@ -1,7 +1,6 @@ |
2 | 2 | -- Update to allow for any number of languages per notice. |
3 | 3 | |
4 | 4 | CREATE TABLE IF NOT EXISTS /*$wgDBprefix*/cn_notice_languages ( |
5 | | - `nl_id` int unsigned NOT NULL PRIMARY KEY auto_increment, |
6 | 5 | `nl_notice_id` int unsigned NOT NULL, |
7 | 6 | `nl_language` varchar(32) NOT NULL |
8 | 7 | ) /*$wgDBTableOptions*/; |
Index: trunk/extensions/CentralNotice/CentralNotice.sql |
— | — | @@ -25,7 +25,6 @@ |
26 | 26 | ) /*$wgDBTableOptions*/; |
27 | 27 | |
28 | 28 | CREATE TABLE IF NOT EXISTS /*$wgDBprefix*/cn_notice_languages ( |
29 | | - `nl_id` int unsigned NOT NULL PRIMARY KEY auto_increment, |
30 | 29 | `nl_notice_id` int unsigned NOT NULL, |
31 | 30 | `nl_language` varchar(32) NOT NULL |
32 | 31 | ) /*$wgDBTableOptions*/; |