2
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2024-09-06 03:21:02 +02:00
miniflux-v2/database/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)
)