From: Andrew Dolgov Date: Sun, 7 Nov 2010 17:15:43 +0000 (+0300) Subject: schema: fix mysql feedbrowser cache table encoding X-Git-Tag: 1.5.0~374 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8b640f50e0bf933e95e315d3015f36cebb460a30;p=tt-rss.git schema: fix mysql feedbrowser cache table encoding --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 37c32dba..bbcc729c 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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,