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.