schema: add status codes
This commit is contained in:
parent
258d48a047
commit
cfc0647184
4 changed files with 8 additions and 0 deletions
|
@ -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…
Reference in a new issue