Index: trunk/extensions/FlaggedRevs/FlaggedRevs.sql |
— | — | @@ -139,7 +139,7 @@ |
140 | 140 | |
141 | 141 | CREATE TABLE /*_*/flaggedrevs_stats ( |
142 | 142 | namespace int unsigned NOT NULL DEFAULT 0 PRIMARY KEY, |
143 | | - total int unsigend NOT NULL DEFAULT 0, |
| 143 | + total int unsigned NOT NULL DEFAULT 0, |
144 | 144 | reviewed int unsigned NOT NULL DEFAULT 0, |
145 | 145 | synced int unsigned NOT NULL DEFAULT 0 |
146 | 146 | ) /*$wgDBTableOptions*/; |
Index: trunk/extensions/FlaggedRevs/archives/patch-flaggedrevs_stats.sql |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | -- Various statistics about the reviewed namespaces |
3 | 3 | CREATE TABLE /*_*/flaggedrevs_stats ( |
4 | 4 | namespace int unsigned NOT NULL DEFAULT 0 PRIMARY KEY, |
5 | | - total int unsigend NOT NULL DEFAULT 0, |
| 5 | + total int unsigned NOT NULL DEFAULT 0, |
6 | 6 | reviewed int unsigned NOT NULL DEFAULT 0, |
7 | 7 | synced int unsigned NOT NULL DEFAULT 0 |
8 | 8 | ) /*$wgDBTableOptions*/; |