mirror of
https://github.com/openvk/openvk
synced 2024-11-13 10:39:24 +03:00
Fix SQL dump from the commit before last
I do not know why it happened, sorry
This commit is contained in:
parent
e3a4c34574
commit
6d14f03573
1 changed files with 3 additions and 3 deletions
|
@ -11,12 +11,12 @@ CREATE TABLE IF NOT EXISTS `topics` (
|
|||
`closed` boolean NOT NULL DEFAULT FALSE,
|
||||
`pinned` boolean NOT NULL DEFAULT FALSE,
|
||||
`flags` tinyint(3) unsigned DEFAULT NULL,
|
||||
`deleted` tinyint(1) DEFAULT 0,
|
||||
`deleted` tinyint(1) DEFAULT 0
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||
|
||||
ALTER TABLE `topics`
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `group` (`group`);
|
||||
ADD PRIMARY KEY (`id`),
|
||||
ADD KEY `group` (`group`);
|
||||
|
||||
ALTER TABLE `topics`
|
||||
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
|
||||
|
|
Loading…
Reference in a new issue