1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-30 17:51:29 +00:00

schema: add (unused) ttrss_feeds.auth_pass_encrypted, bump schema

This commit is contained in:
Andrew Dolgov
2007-04-18 07:25:51 +01:00
parent 21f4756a3f
commit 155a2a53ff
6 changed files with 17 additions and 3 deletions

View File

@@ -63,7 +63,8 @@ create table ttrss_feeds (id serial not null primary key,
auth_pass varchar(250) not null default '',
hidden boolean not null default false,
include_in_digest boolean not null default true,
rtl_content boolean not null default false);
rtl_content boolean not null default false,
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);