Update 001_CreateTables.sql

This commit is contained in:
Dawid Bepierszcz
2024-05-01 01:26:48 +02:00
committed by GitHub
parent 9c870b8fc3
commit c72c7231f7

View File

@@ -33,7 +33,6 @@ CREATE TABLE IF NOT EXISTS `sa_admins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`player_name` varchar(128) NOT NULL,
`player_steamid` varchar(64) NOT NULL,
`flags` TEXT NOT NULL,
`immunity` int(11) NOT NULL DEFAULT 0,
`server_id` INT NULL,
`ends` timestamp NULL,
@@ -47,4 +46,4 @@ CREATE TABLE IF NOT EXISTS `sa_servers` (
`address` varchar(64) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `address` (`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;