Skip to content

Commit

Permalink
Update 001_CreateTables.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
daffyyyy authored Apr 30, 2024
1 parent 9c870b8 commit c72c723
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Database/Migrations/001_CreateTables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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;

0 comments on commit c72c723

Please sign in to comment.