fic2014.sql: add revoked column in teams table
This commit is contained in:
parent
1d94fee682
commit
9fd960dadb
1 changed files with 1 additions and 0 deletions
|
@ -103,6 +103,7 @@ CREATE TABLE IF NOT EXISTS `teams` (
|
||||||
`key_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
`key_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||||
`auth_level` tinyint(1) NOT NULL,
|
`auth_level` tinyint(1) NOT NULL,
|
||||||
`slogan` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
`slogan` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
||||||
|
`revoked` boolean NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
|
|
Reference in a new issue