···2525 domain text not null unique,
2626 did text not null,
2727 secret text not null,
2828- created timestamp default current_timestamp,
2929- registered timestamp);
2828+ created integer default (strftime('%s', 'now')),
2929+ registered integer);
3030 create table if not exists public_keys (
3131 id integer primary key autoincrement,
3232 did text not null,
3333 name text not null,
3434 key text not null,
3535- created timestamp default current_timestamp,
3535+ created integer default (strftime('%s', 'now')),
3636 unique(did, name, key)
3737 );
3838 `)