Skip to content

Commit

Permalink
Update schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Luan Luciano authored Jan 26, 2024
1 parent c3e7a0d commit 33cc0d3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,12 @@ CREATE TABLE IF NOT EXISTS `guild_wars` (
`guild2` int(11) NOT NULL DEFAULT '0',
`name1` varchar(255) NOT NULL,
`name2` varchar(255) NOT NULL,
`status` tinyint(2) NOT NULL DEFAULT '0',
`status` tinyint(2) UNSIGNED NOT NULL DEFAULT '0',
`started` bigint(15) NOT NULL DEFAULT '0',
`ended` bigint(15) NOT NULL DEFAULT '0',
`frags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
`payment` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`frags_limit` smallint(4) UNSIGNED NOT NULL DEFAULT '0',
`payment` bigint(13) UNSIGNED NOT NULL DEFAULT '0',
`duration_days` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
INDEX `guild1` (`guild1`),
INDEX `guild2` (`guild2`),
CONSTRAINT `guild_wars_pk` PRIMARY KEY (`id`)
Expand Down

0 comments on commit 33cc0d3

Please sign in to comment.