Hi,
I have Python project wit ORM for creating sql tables for PostgreSQL and MySql, when I create with Python sql tables I get wrong id column definition:
MySql:
CREATE TABLE contact_us (
id BIGINT NOT NULL AUTO_INCREMENT,
PostgreSQL: CREATE TABLE "contact_us" ( "id" SERIALNOT NULL,
fix will be to add space between SERIALNOT:
CREATE TABLE "contact_us" ( "id" SERIAL NOT NULL,
This happends for tab [</> create CODE]
Best Regards, Sasa