create table token ( id text not null primary key, secret text not null unique, login text not null, issued_at text not null, last_used_at text not null, foreign key (login) references login (id) ); create index token_issued_at on token (issued_at);