schema: add unique constraint on access_key
This commit is contained in:
parent
bcce39e3d8
commit
1eb3012f82
4 changed files with 4 additions and 4 deletions
|
@ -432,7 +432,7 @@ create table ttrss_linked_instances (id integer not null primary key auto_increm
|
|||
last_connected datetime not null,
|
||||
last_status_in integer not null,
|
||||
last_status_out integer not null,
|
||||
access_key varchar(250) not null,
|
||||
access_key varchar(250) not null unique,
|
||||
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create table ttrss_linked_feeds (
|
||||
|
|
|
@ -392,7 +392,7 @@ 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_key varchar(250) not null unique,
|
||||
access_url text not null);
|
||||
|
||||
create table ttrss_linked_feeds (
|
||||
|
|
|
@ -4,7 +4,7 @@ create table ttrss_linked_instances (id integer not null primary key auto_increm
|
|||
last_connected timestamp not null,
|
||||
last_status_in integer not null,
|
||||
last_status_out integer not null,
|
||||
access_key varchar(250) not null,
|
||||
access_key varchar(250) not null unique,
|
||||
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create table ttrss_linked_feeds (
|
||||
|
|
|
@ -4,7 +4,7 @@ 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_key varchar(250) not null unique,
|
||||
access_url text not null);
|
||||
|
||||
create table ttrss_linked_feeds (
|
||||
|
|
Loading…
Reference in a new issue