openvk/install/sqls/00033-agent-card.sql
Alexander Minkin 5710d131fd
SQL: Reorder migration files
The issue was that numbers were duplicating, so I decided to fix them
2023-09-23 01:18:33 +03:00

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;