mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 12:25:56 +00:00
mysql: ttrss_enclosures should be an InnoDB table
This commit is contained in:
@@ -234,7 +234,7 @@ create table ttrss_enclosures (id serial not null primary key,
|
|||||||
title text not null,
|
title text not null,
|
||||||
duration text not null,
|
duration text not null,
|
||||||
index (post_id),
|
index (post_id),
|
||||||
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade);
|
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) TYPE=InnoDB;
|
||||||
|
|
||||||
create table ttrss_prefs_types (id integer not null primary key,
|
create table ttrss_prefs_types (id integer not null primary key,
|
||||||
type_name varchar(100) not null) TYPE=InnoDB;
|
type_name varchar(100) not null) TYPE=InnoDB;
|
||||||
|
|||||||
Reference in New Issue
Block a user