1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:55:55 +00:00

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

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,