mirror of
https://github.com/openvk/openvk
synced 2025-03-04 08:39:50 +03:00
9 lines
320 B
MySQL
9 lines
320 B
MySQL
|
START TRANSACTION;
|
||
|
|
||
|
CREATE TABLE `ovk_upgrade_history` (
|
||
|
`level` smallint UNSIGNED NOT NULL,
|
||
|
`timestamp` bigint(20) UNSIGNED NOT NULL,
|
||
|
`operator` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT "Maintenance Script"
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
|
|
||
|
COMMIT;
|