11 lines
178 B
SQL
11 lines
178 B
SQL
PRAGMA foreign_keys = on;
|
|
|
|
-- =======
|
|
-- DB meta
|
|
-- =======
|
|
|
|
create table db_version (
|
|
version integer primary key
|
|
) strict, without rowid;
|
|
insert into db_version values(0);
|