2017-12-03 04:32:14 +01:00
|
|
|
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',
|
2017-12-03 06:12:03 +01:00
|
|
|
instapaper_enabled bool default 'f',
|
|
|
|
instapaper_username text default '',
|
|
|
|
instapaper_password text default '',
|
2017-12-03 04:32:14 +01:00
|
|
|
primary key(user_id)
|
|
|
|
)
|