summaryrefslogtreecommitdiff
path: root/migrations/20240912013151_token_last_used.sql
blob: 0b45cd9c54dbc6cbe110c27667345f7058ee18ce (plain)
1
2
3
4
5
6
alter table token
add column last_used_at text
	not null;

update token
set last_used_at = issued_at;