miniflux-v2/sql/schema_version_5.sql

16 lines
509 B
MySQL
Raw Normal View History

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-04 02:44:27 +01:00
fever_enabled bool default 'f',
fever_username text default '',
fever_password text default '',
fever_token text default '',
2017-12-03 04:32:14 +01:00
primary key(user_id)
)