aboutsummaryrefslogtreecommitdiffhomepage
path: root/database/sql/schema_version_3.sql
blob: d58e35d95ea2d31f7b3a4375d8afd026fafa48aa (plain)
1
2
3
4
5
6
create table tokens (
    id text not null,
    value text not null,
    created_at timestamp with time zone not null default now(),
    primary key(id, value)
);