mirror of
https://github.com/miniflux/v2.git
synced 2025-08-11 17:51:01 +00:00
Create database package (refactoring)
This commit is contained in:
parent
17054b396e
commit
cf03e0e338
30 changed files with 61 additions and 54 deletions
6
database/sql/schema_version_3.sql
Normal file
6
database/sql/schema_version_3.sql
Normal file
|
@ -0,0 +1,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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue