Skip to content

Commit

Permalink
specify engine=innodb for all tt-rss tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Dolgov committed Sep 10, 2013
1 parent 2e35b3b commit 4df07d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema/ttrss_schema_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ create table ttrss_counters_cache (
value integer not null default 0,
updated datetime not null,
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
);
) ENGINE=InnoDB DEFAULT CHARSET=UTF8;

create index ttrss_counters_cache_feed_id_idx on ttrss_counters_cache(feed_id);
create index ttrss_counters_cache_owner_uid_idx on ttrss_counters_cache(owner_uid);
Expand All @@ -96,7 +96,7 @@ create table ttrss_cat_counters_cache (
value integer not null default 0,
updated datetime not null,
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
);
) ENGINE=InnoDB DEFAULT CHARSET=UTF8;

create index ttrss_cat_counters_cache_owner_uid_idx on ttrss_cat_counters_cache(owner_uid);

Expand Down Expand Up @@ -435,7 +435,7 @@ create table ttrss_feedbrowser_cache (
feed_url text not null,
site_url text not null,
title text not null,
subscribers integer not null) DEFAULT CHARSET=UTF8;
subscribers integer not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;

create table ttrss_labels2 (id integer not null primary key auto_increment,
owner_uid integer not null,
Expand Down

0 comments on commit 4df07d5

Please sign in to comment.