mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-03 15:37:11 +00:00
schema: add support for enclosures
This commit is contained in:
@@ -3,4 +3,11 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
|
||||
alter table ttrss_users add column created timestamp;
|
||||
alter table ttrss_users alter column created set default null;
|
||||
|
||||
create table ttrss_enclosures (id serial not null primary key,
|
||||
content_url text not null,
|
||||
content_type varchar(250) not null,
|
||||
post_id integer not null,
|
||||
index (post_id),
|
||||
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade);
|
||||
|
||||
update ttrss_version set schema_version = 26;
|
||||
|
||||
Reference in New Issue
Block a user