+1
Under review

SQL import for postgres fails to infer NOT NULL for PRIMARY KEY

Tomasz Traczyk fa 8 anys updated by Michał Kołodziejski fa 8 anys 1

For the following CREATE statement

CREATE TABLE tst (
     id int,
     primary key (id)
);

postgres infers, that since id is primary key, it should be not null and ends up creating following table:

| Column |  Type   | Modifiers 
|--------+---------+----------- | id | integer | not null

In vertabelo, while importing model form SQL, the not null modifier is not added and I get "Primary key column can't be null" error.