Subversion Repositories VORC

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
208 - 1
## Table: score
2
#
3
# +-------------+----------------------+------+-----+---------+-------+
4
# | Field       | Type                 | Null | Key | Default | Extra |
5
# +-------------+----------------------+------+-----+---------+-------+
6
# | gid         | int(11) unsigned     | NO   | PRI | NULL    |       |
7
# | team1_score | smallint(5) unsigned | NO   |     | NULL    |       |
8
# | team2_score | smallint(5) unsigned | NO   |     | NULL    |       |
9
# +-------------+----------------------+------+-----+---------+-------+
10
 
11
CREATE TABLE `score` (
12
  `gid` int(11) unsigned NOT NULL,
13
  `team1_score` smallint(5) unsigned NOT NULL,
14
  `team2_score` smallint(5) unsigned NOT NULL,
15
  PRIMARY KEY (`gid`),
16
  UNIQUE KEY `gid_UNIQUE` (`gid`)
17
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci