1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-07 13:40:53 +02:00
ttrss/schema/obsolete/upgrade-1.1.3-1.1.4-mysql.sql

21 lines
701 B
MySQL
Raw Normal View History

alter table ttrss_entries add column author varchar(250);
update ttrss_entries set author = '';
alter table ttrss_entries change author author varchar(250) not null;
alter table ttrss_entries alter column author set default '';
2006-03-02 13:15:28 +01:00
create table ttrss_sessions (id varchar(250) not null primary key,
2006-03-02 09:10:43 +01:00
data text,
expire integer not null,
2006-03-02 09:32:44 +01:00
ip_address varchar(15) not null default '',
2006-03-02 13:15:28 +01:00
index (id),
2006-03-02 09:10:43 +01:00
index (expire)) TYPE=InnoDB;
delete from ttrss_prefs where pref_name = 'ENABLE_SPLASH';
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('OPEN_LINKS_IN_NEW_WINDOW', 1, 'true', 'Open article links in new browser window',2);
update ttrss_version set schema_version = 6;