summaryrefslogtreecommitdiff
path: root/sql/mysql/migrations/51.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/mysql/migrations/51.sql')
-rw-r--r--sql/mysql/migrations/51.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/mysql/migrations/51.sql b/sql/mysql/migrations/51.sql
new file mode 100644
index 000000000..e8fe4c7b8
--- /dev/null
+++ b/sql/mysql/migrations/51.sql
@@ -0,0 +1,16 @@
+create table ttrss_labels2 (id integer not null primary key auto_increment,
+ owner_uid integer not null,
+ caption varchar(250) not null,
+ foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
+) ENGINE=InnoDB;
+
+create table ttrss_user_labels2 (label_id integer not null,
+ article_id integer not null,
+ foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
+ foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
+) ENGINE=InnoDB;
+
+insert into ttrss_filter_actions (id,name,description) values (7, 'label',
+ 'Assign label');
+
+update ttrss_version set schema_version = 51;