Skip to content
Snippets Groups Projects
Commit 27fe932a authored by Demian Katz's avatar Demian Katz
Browse files

Fixed syntax error in migration; thanks to Jochen Lienhard.

parent 313607dd
No related merge requests found
...@@ -3,5 +3,7 @@ ...@@ -3,5 +3,7 @@
-- --
ALTER TABLE "search" ALTER TABLE "search"
ALTER COLUMN created TYPE timestamp NOT NULL SET DEFAULT '1970-01-01 00:00:00', ALTER COLUMN created TYPE timestamp,
ADD COLUMN checksum int DEFAULT NULL; ALTER COLUMN created SET NOT NULL,
ALTER COLUMN created SET DEFAULT '1970-01-01 00:00:00',
ADD COLUMN checksum int DEFAULT NULL;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment