Code: Select all
drop table if exists timers;
create table timers(
id integer(100) unsigned not null primary key auto_increment,
name varchar(100) null,
PutTime varchar(100) null,
InTime varchar(100) null,
NotInTime varchar(100) null,
ReleaseTime varchar(100) null,
ReduceTime varchar(100) null,)
ENGINE InnoDB, CHARACTER SET utf8, COLLATE utf8_bin;
then i got this error when installing it:
Code: Select all
Error whilst executing:
create table timers( id integer(100) unsigned not null primary key auto_increment, name varchar(100) null, PutTime varchar(100) null, InTime varchar(100) null, NotInTime varchar(100) null, ReleaseTime varchar(100) null, ReduceTime varchar(100) null,) ENGINE InnoDB, CHARACTER SET utf8, COLLATE utf8_bin
i don't get it.