2020-09-19 16:08:07 +02:00
|
|
|
drop table if exists scores2;
|
|
|
|
create table scores2(
|
|
|
|
`ID` bigint primary key auto_increment,
|
|
|
|
`text` text not null,
|
|
|
|
`points` int not null,
|
|
|
|
`team` varchar(4) not null
|
|
|
|
)
|
|
|
|
DEFAULT CHARACTER SET utf8
|
2018-06-15 09:33:29 +02:00
|
|
|
COLLATE utf8_general_ci;
|