openvk/install/sqls/00002-support-aliases.sql
Alexander Minkin 8483a2d343
SQL: fix all support_names-related migrations
This solves some problems in Docker instance
2023-09-23 01:10:03 +03:00

7 lines
No EOL
241 B
SQL

CREATE TABLE `support_names` (
`agent` BIGINT UNSIGNED NOT NULL,
`name` VARCHAR(512) NOT NULL,
`icon` VARCHAR(1024) NULL DEFAULT NULL,
`numerate` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`agent`)
) ENGINE = InnoDB;