summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-10 05:34:36 +0100
committerAndrew Dolgov <[email protected]>2005-11-10 05:34:36 +0100
commit5f171894d1dccc352c7ba6c48618aef8454b9134 (patch)
tree05abcaac586bc7fd9bc4a423db60c0ccdbc68f43 /schema/ttrss_schema_pgsql.sql
parent9826bd2ed96d5eb5ed21eb8f1e17bd1f763be374 (diff)
ttrss_version table (schema updated)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 2ab310cc5..3a20588eb 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -79,3 +79,9 @@ create table ttrss_tags (id serial primary key,
tag_name varchar(250) not null,
post_id integer references ttrss_entries(id) ON DELETE CASCADE not null);
+drop table ttrss_version;
+
+create table ttrss_version (schema_version int not null);
+
+insert into ttrss_version values (1);
+