schema: add status codes

master
Andrew Dolgov 13 years ago
parent 258d48a047
commit cfc0647184

@ -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;

@ -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);

@ -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;

@ -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);

Loading…
Cancel
Save