rollerverbrauch/app/schema.sql

7 lines
184 B
MySQL
Raw Normal View History

2015-03-06 21:58:53 +01:00
drop table if exists pitstops;
create table pitstops (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`date` TEXT NOT NULL,
`odometer` INTEGER NOT NULL,
`litres` REAL NOT NULL
);