Index: trunk/extensions/LiquidThreads/lqt.sql |
— | — | @@ -91,7 +91,7 @@ |
92 | 92 | CREATE TABLE /*_*/thread_pending_relationship ( |
93 | 93 | tpr_thread int unsigned NOT NULL, |
94 | 94 | tpr_relationship varbinary(64) NOT NULL, |
95 | | - tpr_title varbinary(1024) NOT NULL, |
| 95 | + tpr_title varbinary(255) NOT NULL, |
96 | 96 | tpr_type varbinary(32) NOT NULL, |
97 | 97 | PRIMARY KEY (tpr_thread,tpr_relationship) |
98 | 98 | ) /*$wgDBTableOptions*/; |
Index: trunk/extensions/LiquidThreads/schema-changes/thread_pending_relationship.sql |
— | — | @@ -2,7 +2,7 @@ |
3 | 3 | CREATE TABLE /*_*/thread_pending_relationship ( |
4 | 4 | tpr_thread int unsigned NOT NULL, |
5 | 5 | tpr_relationship varbinary(64) NOT NULL, |
6 | | - tpr_title varbinary(1024) NOT NULL, |
| 6 | + tpr_title varbinary(255) NOT NULL, |
7 | 7 | tpr_type varbinary(32) NOT NULL, |
8 | 8 | PRIMARY KEY (tpr_thread,tpr_relationship) |
9 | 9 | ) /*$wgDBTableOptions*/; |