forked from SirPlease/L4D2-Competitive-Rework
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3615337
commit f330e1a
Showing
3 changed files
with
308 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
-- Adminer 4.8.1 MySQL 5.7.41 dump | ||
|
||
SET NAMES utf8; | ||
SET time_zone = '+00:00'; | ||
SET foreign_key_checks = 0; | ||
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; | ||
|
||
SET NAMES utf8mb4; | ||
|
||
DROP TABLE IF EXISTS `chat_log`; | ||
CREATE TABLE `chat_log` ( | ||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
`date` datetime DEFAULT NULL, | ||
`map` varchar(128) NOT NULL, | ||
`steamid` varchar(21) NOT NULL, | ||
`name` varchar(128) NOT NULL, | ||
`message_style` tinyint(2) DEFAULT '0', | ||
`message` varchar(126) NOT NULL, | ||
`server` varchar(126) DEFAULT NULL, | ||
`port` int(11) DEFAULT NULL, | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
|
||
|
||
-- 2023-09-14 02:09:31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.