···443 created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
444 );
445000000000000000446 create table if not exists migrations (
447 id integer primary key autoincrement,
448 name text unique
···443 created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
444 );
445446+ create table if not exists strings (
447+ -- identifiers
448+ did text not null,
449+ rkey text not null,
450+451+ -- content
452+ filename text not null,
453+ description text,
454+ content text not null,
455+ created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
456+ edited text,
457+458+ primary key (did, rkey)
459+ );
460+461 create table if not exists migrations (
462 id integer primary key autoincrement,
463 name text unique