1
0
Fork 0
miniflux/sql/schema_version_5.sql

16 lines
509 B
MySQL
Raw Normal View History

2017-12-02 22:32:14 -05: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 00:12:03 -05:00
instapaper_enabled bool default 'f',
instapaper_username text default '',
instapaper_password text default '',
2017-12-03 20:44:27 -05:00
fever_enabled bool default 'f',
fever_username text default '',
fever_password text default '',
fever_token text default '',
2017-12-02 22:32:14 -05:00
primary key(user_id)
)