Index: branches/preferences-work/phase3/maintenance/tables.sql |
— | — | @@ -1271,7 +1271,7 @@ |
1272 | 1272 | |
1273 | 1273 | CREATE TABLE /*_*/user_properties( |
1274 | 1274 | up_user int not null, |
1275 | | - up_property varchar(255) not null, |
| 1275 | + up_property varbinary(32) not null, |
1276 | 1276 | up_value blob |
1277 | 1277 | ) /*$wgDBTableOptions*/; |
1278 | 1278 | |
Index: branches/preferences-work/phase3/maintenance/archives/patch-user_properties.sql |
— | — | @@ -2,7 +2,7 @@ |
3 | 3 | |
4 | 4 | CREATE TABLE /*_*/user_properties( |
5 | 5 | up_user bigint not null, |
6 | | - up_property varchar(255) not null, |
| 6 | + up_property varbinary(32) not null, |
7 | 7 | up_value blob |
8 | 8 | ) /*$wgDBTableOptions*/; |
9 | 9 | |