schema: add status codes

This commit is contained in:
Andrew Dolgov 2011-04-20 14:46:53 +04:00
parent 258d48a047
commit cfc0647184
4 changed files with 8 additions and 0 deletions

View File

@ -430,6 +430,8 @@ create table ttrss_access_keys (id integer not null primary key auto_increment,
create table ttrss_linked_instances (id integer not null primary key auto_increment,
last_connected datetime not null,
last_status_in integer not null,
last_status_out integer not null,
access_key varchar(250) not null,
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;

View File

@ -390,6 +390,8 @@ create table ttrss_access_keys (id serial not null primary key,
create table ttrss_linked_instances (id serial not null primary key,
last_connected timestamp not null,
last_status_in integer not null,
last_status_out integer not null,
access_key varchar(250) not null,
access_url text not null);

View File

@ -2,6 +2,8 @@ begin;
create table ttrss_linked_instances (id integer not null primary key auto_increment,
last_connected timestamp not null,
last_status_in integer not null,
last_status_out integer not null,
access_key varchar(250) not null,
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;

View File

@ -2,6 +2,8 @@ begin;
create table ttrss_linked_instances (id serial not null primary key,
last_connected datetime not null,
last_status_in integer not null,
last_status_out integer not null,
access_key varchar(250) not null,
access_url text not null);