bytes->blob in sql

This commit is contained in:
Damien Elmes 2020-05-18 13:36:45 +10:00
parent 8bd5d756e2
commit cdbe7346ab

View file

@ -31,8 +31,8 @@ create table decks (
name text not null collate unicase, name text not null collate unicase,
mtime_secs integer not null, mtime_secs integer not null,
usn integer not null, usn integer not null,
common bytes not null, common blob not null,
kind bytes not null kind blob not null
); );
create unique index idx_decks_name on decks (name); create unique index idx_decks_name on decks (name);
create index idx_notes_mid on notes (mid); create index idx_notes_mid on notes (mid);