Anki/rslib/src/storage/upgrades/schema14_upgrade.sql
2020-04-06 15:39:47 +10:00

9 lines
No EOL
173 B
SQL

create table config (
key text not null primary key,
usn integer not null,
mtime_secs integer not null,
val blob not null
) without rowid;
update col
set
ver = 14;