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

10 lines
No EOL
207 B
SQL

create table deck_config (
id integer primary key not null,
name text not null collate unicase,
mtime_secs integer not null,
usn integer not null,
config blob not null
);
update col
set
ver = 12;