mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:25:56 +00:00
replace old-style published feed with universal secretkey-based approach used for all feeds; do not allow user/pass handling in generated feed urls; bump schema
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
SET NAMES utf8;
|
||||
SET CHARACTER SET utf8;
|
||||
|
||||
drop table if exists ttrss_access_keys;
|
||||
drop table if exists ttrss_user_labels2;
|
||||
drop table if exists ttrss_labels2;
|
||||
drop table if exists ttrss_feedbrowser_cache;
|
||||
@@ -241,7 +242,7 @@ create table ttrss_tags (id integer primary key auto_increment,
|
||||
|
||||
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
insert into ttrss_version values (68);
|
||||
insert into ttrss_version values (69);
|
||||
|
||||
create table ttrss_enclosures (id integer primary key auto_increment,
|
||||
content_url text not null,
|
||||
@@ -446,4 +447,11 @@ create table ttrss_user_labels2 (label_id integer not null,
|
||||
foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
|
||||
) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create table ttrss_access_keys (id serial not null primary key,
|
||||
access_key varchar(250) not null,
|
||||
feed_id varchar(250) not null,
|
||||
is_cat bool not null default false,
|
||||
owner_uid integer not null,
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
commit;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
drop table ttrss_access_keys;
|
||||
drop table ttrss_user_labels2;
|
||||
drop table ttrss_labels2;
|
||||
drop table ttrss_feedbrowser_cache;
|
||||
@@ -213,7 +214,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
|
||||
|
||||
create table ttrss_version (schema_version int not null);
|
||||
|
||||
insert into ttrss_version values (68);
|
||||
insert into ttrss_version values (69);
|
||||
|
||||
create table ttrss_enclosures (id serial not null primary key,
|
||||
content_url text not null,
|
||||
@@ -405,4 +406,10 @@ create table ttrss_user_labels2 (
|
||||
article_id integer not null references ttrss_entries(id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
create table ttrss_access_keys (id serial not null primary key,
|
||||
access_key varchar(250) not null,
|
||||
feed_id varchar(250) not null,
|
||||
is_cat boolean not null default false,
|
||||
owner_uid integer not null references ttrss_users(id) on delete cascade);
|
||||
|
||||
commit;
|
||||
|
||||
12
schema/versions/mysql/69.sql
Normal file
12
schema/versions/mysql/69.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
begin;
|
||||
|
||||
create table ttrss_access_keys (id serial not null primary key,
|
||||
access_key varchar(250) not null,
|
||||
feed_id varchar(250) not null,
|
||||
is_cat bool not null default false,
|
||||
owner_uid integer not null,
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
update ttrss_version set schema_version = 69;
|
||||
|
||||
commit;
|
||||
11
schema/versions/pgsql/69.sql
Normal file
11
schema/versions/pgsql/69.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
begin;
|
||||
|
||||
create table ttrss_access_keys (id serial not null primary key,
|
||||
access_key varchar(250) not null,
|
||||
feed_id varchar(250) not null,
|
||||
is_cat bool not null default false,
|
||||
owner_uid integer not null references ttrss_users(id) on delete cascade);
|
||||
|
||||
update ttrss_version set schema_version = 69;
|
||||
|
||||
commit;
|
||||
Reference in New Issue
Block a user