site-accueil-insa/schema.sql
2018-07-06 19:34:49 +02:00

9 lines
No EOL
227 B
SQL
Executable file

drop table if exists scores;
create table scores(
`ID` bigint primary key auto_increment,
`text` text not null,
`points` int not null,
`team` varchar(4) not null
)
DEFAULT CHARACTER SET utf8
COLLATE utf8_general_ci;