···443443 created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
444444 );
445445446446+ create table if not exists strings (
447447+ -- identifiers
448448+ did text not null,
449449+ rkey text not null,
450450+451451+ -- content
452452+ filename text not null,
453453+ description text,
454454+ content text not null,
455455+ created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
456456+ edited text,
457457+458458+ primary key (did, rkey)
459459+ );
460460+446461 create table if not exists migrations (
447462 id integer primary key autoincrement,
448463 name text unique