site-accueil-insa/schema.sql

9 lines
227 B
MySQL
Raw Normal View History

2018-06-15 09:33:29 +02:00
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;