11 lines
160 B
SQL
11 lines
160 B
SQL
PRAGMA foreign_keys = on;
|
|
|
|
-- =======
|
|
-- DB meta
|
|
-- =======
|
|
|
|
create table db_version (
|
|
version integer not null
|
|
) strict;
|
|
insert into db_version values(0);
|