summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-20 12:06:30 +0400
committerAndrew Dolgov <[email protected]>2011-04-20 12:07:07 +0400
commitafb875ccd704dec355b73eecb2ded23f047414d8 (patch)
tree9a7a541206e27387f0cc8cc5117a098b3c923dba /schema
parent34846e514f916e0ae7d942cc99e84c9507e4728b (diff)
add rpc method to export feedbrowser data; update schema
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql1
-rw-r--r--schema/ttrss_schema_pgsql.sql1
-rw-r--r--schema/versions/mysql/84.sql1
-rw-r--r--schema/versions/pgsql/84.sql1
4 files changed, 4 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 2a6e89c8d..91475e602 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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;
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index d6cc924f0..a7cee5363 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -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);
diff --git a/schema/versions/mysql/84.sql b/schema/versions/mysql/84.sql
index 631daa03b..7a0ccbfb9 100644
--- a/schema/versions/mysql/84.sql
+++ b/schema/versions/mysql/84.sql
@@ -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;
diff --git a/schema/versions/pgsql/84.sql b/schema/versions/pgsql/84.sql
index 1ff253f73..77212317b 100644
--- a/schema/versions/pgsql/84.sql
+++ b/schema/versions/pgsql/84.sql
@@ -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);