summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index f7eefa672..93a2aa299 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -84,3 +84,10 @@ create table ttrss_tags (id integer primary key auto_increment,
index (post_id),
foreign key (post_id) references ttrss_entries(id) ON DELETE CASCADE) TYPE=InnoDB;
+drop table ttrss_version;
+
+create table ttrss_version (schema_version int not null) TYPE=InnoDB;
+
+insert into ttrss_version values (1);
+
+