summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.3-1.1.4-mysql.sql
blob: 32b45e897ea4eefee012f665b90555935c7551b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 '';

create table ttrss_sessions (id varchar(300) unique not null primary key,
	data text,
	expire integer not null,
	index (id), 
	index (expire)) TYPE=InnoDB;

update ttrss_version set schema_version = 6;