1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/schema/versions/pgsql/26.sql

14 lines
563 B
MySQL
Raw Normal View History

insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
alter table ttrss_users add column created timestamp;
alter table ttrss_users alter column created set default null;
2007-11-17 11:16:24 +01:00
create table ttrss_enclosures (id serial not null primary key,
2007-11-17 11:33:13 +01:00
content_url text not null,
content_type varchar(250) not null,
title text not null,
duration text not null,
2007-11-17 11:33:13 +01:00
post_id integer references ttrss_entries(id) ON DELETE cascade NOT NULL);
2007-11-17 11:16:24 +01:00
update ttrss_version set schema_version = 26;