Index: trunk/extensions/FlaggedRevs/schema/mysql/FlaggedRevs.sql |
— | — | @@ -146,7 +146,7 @@ |
147 | 147 | -- Stat key name, colons separate paramaters |
148 | 148 | frs_stat_key varchar(255) NOT NULL, |
149 | 149 | -- Stat value as an integer |
150 | | - frs_stat_val integer unsigned NOT NULL, |
| 150 | + frs_stat_val bigint NOT NULL, |
151 | 151 | PRIMARY KEY(frs_stat_key,frs_timestamp) |
152 | 152 | ) /*$wgDBTableOptions*/; |
153 | 153 | CREATE INDEX /*i*/frs_timestamp ON /*_*/flaggedrevs_statistics (frs_timestamp); |
Index: trunk/extensions/FlaggedRevs/schema/mysql/patch-flaggedrevs_statistics.sql |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | -- Stat key name, colons separate paramaters |
11 | 11 | frs_stat_key varchar(255) NOT NULL, |
12 | 12 | -- Stat value as an integer |
13 | | - frs_stat_val integer unsigned NOT NULL, |
| 13 | + frs_stat_val bigint NOT NULL, |
14 | 14 | PRIMARY KEY(frs_stat_key,frs_timestamp) |
15 | 15 | ) /*$wgDBTableOptions*/; |
16 | 16 | CREATE INDEX /*i*/frs_timestamp ON /*_*/flaggedrevs_statistics (frs_timestamp); |