mirror of
https://github.com/miniflux/v2.git
synced 2025-07-02 16:38:37 +00:00
9 lines
245 B
MySQL
9 lines
245 B
MySQL
|
create table integrations (
|
||
|
user_id int not null,
|
||
|
pinboard_enabled bool default 'f',
|
||
|
pinboard_token text default '',
|
||
|
pinboard_tags text default 'miniflux',
|
||
|
pinboard_mark_as_unread bool default 'f',
|
||
|
primary key(user_id)
|
||
|
)
|