· 7 years ago · Jan 16, 2019, 04:14 PM
1create table if not exists readings(
2 id int primary key auto_increment not null,
3 timestamp datetime not null default now()
4)engine = InnoDB character set utf8 collate utf8_spanish_ci;
5
6insert into (id, timestamp) values (null, default);