mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-09-27 20:17:04 +02:00
update: Added 2 missing queries from migration file
This commit is contained in:
parent
1baccc9404
commit
de00331fb8
1 changed files with 9 additions and 0 deletions
|
|
@ -1,4 +1,13 @@
|
|||
ALTER TABLE `sa_servers` ADD `rcon` varchar(64) NOT NULL AFTER `address`;
|
||||
ALTER TABLE `sa_admins` ADD `servers_groups` int(11) NOT NULL AFTER `server_id`;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `sa_servers_groups` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(64) NOT NULL,
|
||||
`servers` varchar(64) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `sa_players_ips` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue