summaryrefslogtreecommitdiff
path: root/schema/versions
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/versions
parent34846e514f916e0ae7d942cc99e84c9507e4728b (diff)
add rpc method to export feedbrowser data; update schema
Diffstat (limited to 'schema/versions')
-rw-r--r--schema/versions/mysql/84.sql1
-rw-r--r--schema/versions/pgsql/84.sql1
2 files changed, 2 insertions, 0 deletions
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);