summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.2-1.1.3-pgsql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/upgrade-1.1.2-1.1.3-pgsql.sql')
-rw-r--r--schema/upgrade-1.1.2-1.1.3-pgsql.sql10
1 files changed, 4 insertions, 6 deletions
diff --git a/schema/upgrade-1.1.2-1.1.3-pgsql.sql b/schema/upgrade-1.1.2-1.1.3-pgsql.sql
index e3ddb0357..1292daa3c 100644
--- a/schema/upgrade-1.1.2-1.1.3-pgsql.sql
+++ b/schema/upgrade-1.1.2-1.1.3-pgsql.sql
@@ -1,11 +1,9 @@
begin;
-create table ttrss_scheduled_updates (id integer not null primary key auto_increment,
- owner_uid integer not null,
- feed_id integer default null,
- entered datetime not null,
- foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
- foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
+create table ttrss_scheduled_updates (id serial not null primary key,
+ owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
+ feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE,
+ entered timestamp not null default NOW());
update ttrss_version set schema_version = 5;