Skip to content

postgresql constraints all get the same name #307

Open
@torbjorn

Description

@torbjorn

It seems postgresql schemas get the same name for all constraints for a table (which obviously won't work)

I tried setting up a simple table with a id auto_increment primary key and a code text column that's unique:

This is what it generated:

    CREATE TABLE test (
     id BIGSERIAL,
     code TEXT NOT NULL
    );


    ALTER TABLE test ADD CONSTRAINT test_pkey PRIMARY KEY (id);
    ALTER TABLE test ADD CONSTRAINT test_pkey UNIQUE (code);

Notice how they are both named test_pkey. This does not work.

If I give the constraints specific names, it still doesn't change this behavior.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions