You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
MySQL
17 lines
400 B
MySQL
16 years ago
|
begin;
|
||
|
|
||
|
drop table ttrss_enclosures;
|
||
|
|
||
|
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,
|
||
|
title text not null,
|
||
|
duration text not null,
|
||
|
index (post_id),
|
||
13 years ago
|
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB;
|
||
16 years ago
|
|
||
|
update ttrss_version set schema_version = 56;
|
||
|
|
||
|
commit;
|