Corrected mod_name column syntax in warnings table
It was missing a comma at the end of the line.
This commit is contained in:
parent
291b262b64
commit
7a4cabaf67
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ CREATE TABLE IF NOT EXISTS `cockatrice_bans` (
|
||||||
CREATE TABLE IF NOT EXISTS `cockatrice_warnings` (
|
CREATE TABLE IF NOT EXISTS `cockatrice_warnings` (
|
||||||
`user_id` int(7) unsigned NOT NULL,
|
`user_id` int(7) unsigned NOT NULL,
|
||||||
`user_name` varchar(255) NOT NULL,
|
`user_name` varchar(255) NOT NULL,
|
||||||
`mod_name` varchar(255) NOT NULL
|
`mod_name` varchar(255) NOT NULL,
|
||||||
`reason` text NOT NULL,
|
`reason` text NOT NULL,
|
||||||
`time_of` datetime NOT NULL,
|
`time_of` datetime NOT NULL,
|
||||||
`clientid` varchar(15) NOT NULL,
|
`clientid` varchar(15) NOT NULL,
|
||||||
|
|
Loading…
Reference in a new issue