2
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2024-09-05 19:11:03 +02:00
miniflux-v2/sql/schema_version_3.sql
2017-12-01 21:51:22 -08:00

6 lines
162 B
SQL

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)
);