pgmigration makes the following error when migrating a serial field:
DEFAULT nextval('testtable test_id_seq'::text) NOT NULL

The sequence table should be in double quotes surrounded by single
quotes:
DEFAULT nextval('"testtable test_id_seq"'::text) NOT NULL

Any table containing a space will get converted to an invalid string.


---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to