Anki/rslib/src/storage/upgrades/schema13_upgrade.sql
Damien Elmes 45ea0ddefd use separate schema version for tag changes
Will prevent issues if user upgrades after an unclean shutdown
2020-04-04 10:14:51 +10:00

7 lines
No EOL
135 B
SQL

create table tags (
tag text not null primary key collate unicase,
usn integer not null
) without rowid;
update col
set
ver = 13;