···2222 did text not null,
2323 name text not null,
2424 key text not null,
2525+ created timestamp default current_timestamp,
2526 unique(did, name, key)
2627 );
2728 create table if not exists repos (
···2930 did text not null,
3031 name text not null,
3132 description text not null,
3333+ created timestamp default current_timestamp,
3234 unique(did, name)
3335 )
3436 `)