|
Lines 1311-1316
CREATE TABLE `matchchecks` (
Link Here
|
| 1311 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
1311 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
| 1312 |
|
1312 |
|
| 1313 |
-- |
1313 |
-- |
|
|
1314 |
-- Table structure for table `need_merge_authorities` |
| 1315 |
-- |
| 1316 |
|
| 1317 |
DROP TABLE IF EXISTS `need_merge_authorities`; |
| 1318 |
CREATE TABLE `need_merge_authorities` ( |
| 1319 |
`id` int NOT NULL auto_increment PRIMARY KEY, |
| 1320 |
`authid` bigint NOT NULL, |
| 1321 |
`done` tinyint DEFAULT 0 |
| 1322 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
| 1323 |
|
| 1324 |
-- |
| 1314 |
-- Table structure for table `notifys` |
1325 |
-- Table structure for table `notifys` |
| 1315 |
-- |
1326 |
-- |
| 1316 |
|
1327 |
|