mysql: ttrss_enclosures should be an InnoDB table

This commit is contained in:
Andrew Dolgov 2009-05-11 23:25:56 +04:00
parent 090710c622
commit 42a5226a74
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ create table ttrss_enclosures (id serial not null primary key,
title text not null,
duration text not null,
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,
type_name varchar(100) not null) TYPE=InnoDB;