1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:05:55 +00:00

implement per-feed stemming language setting

This commit is contained in:
Andrew Dolgov
2015-08-04 13:32:52 +03:00
parent e854442e1f
commit df659891ac
8 changed files with 57 additions and 8 deletions

View File

@@ -96,6 +96,7 @@ create table ttrss_feeds (id serial not null primary key,
view_settings varchar(250) not null default '',
pubsub_state integer not null default 0,
favicon_last_checked timestamp default null,
feed_language varchar(100) not null default '',
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);