Copy link to clipboard
Copied
Hello,
I'm using Orm, and I can't manage to set a ID column as sequence or integer with Postgres. It's always set as varchar, so foreignkeys don't match. I need to set it serial or increment..
Thank you very much
Copy link to clipboard
Copied
Create your tables with sql create table queries. Then you have contol over your database design.
Copy link to clipboard
Copied
Seconded. Orm is all lovely and everything, but I wouldn't trust it to design a database for me.