mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:25:56 +00:00
add rpc method to export feedbrowser data; update schema
This commit is contained in:
@@ -429,6 +429,7 @@ create table ttrss_access_keys (id integer not null primary key auto_increment,
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create table ttrss_linked_instances (id integer not null primary key auto_increment,
|
||||
last_connected datetime not null,
|
||||
access_key varchar(250) not null,
|
||||
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
|
||||
@@ -389,6 +389,7 @@ create table ttrss_access_keys (id serial not null primary key,
|
||||
owner_uid integer not null references ttrss_users(id) on delete cascade);
|
||||
|
||||
create table ttrss_linked_instances (id serial not null primary key,
|
||||
last_connected timestamp not null,
|
||||
access_key varchar(250) not null,
|
||||
access_url text not null);
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
begin;
|
||||
|
||||
create table ttrss_linked_instances (id integer not null primary key auto_increment,
|
||||
last_connected timestamp not null,
|
||||
access_key varchar(250) not null,
|
||||
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
begin;
|
||||
|
||||
create table ttrss_linked_instances (id serial not null primary key,
|
||||
last_connected datetime not null,
|
||||
access_key varchar(250) not null,
|
||||
access_url text not null);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user