mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-25 08:01:29 +00:00
16 lines
434 B
SQL
16 lines
434 B
SQL
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;
|
|
|