mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
9 lines
No EOL
232 B
SQL
9 lines
No EOL
232 B
SQL
|
|
ALTER TABLE `support_names` ADD `id` bigint(20) UNSIGNED NOT NULL FIRST;
|
|
|
|
ALTER TABLE `support_names`
|
|
ADD UNIQUE KEY `id` (`id`);
|
|
|
|
ALTER TABLE `support_names`
|
|
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
|
|
COMMIT; |