summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-07 20:15:43 +0300
committerAndrew Dolgov <[email protected]>2010-11-07 20:15:43 +0300
commit8b640f50e0bf933e95e315d3015f36cebb460a30 (patch)
tree4ecb236dcde287f32a3160327e7f4419efa6f5db /schema
parent8e54a21e7790a248e3fb3d3c9f25a7523514f95f (diff)
schema: fix mysql feedbrowser cache table encoding
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 37c32dba8..bbcc729c0 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,