schema: fix mysql feedbrowser cache table encoding

This commit is contained in:
Andrew Dolgov 2010-11-07 20:15:43 +03:00
parent 8e54a21e77
commit 8b640f50e0
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
create table ttrss_feedbrowser_cache (
feed_url text not null,
title text not null,
subscribers integer not null);
subscribers integer not null) DEFAULT CHARSET=UTF8;
create table ttrss_labels2 (id integer not null primary key auto_increment,
owner_uid integer not null,