I need to drop a unique constraint from a postgresql table, but I didn't give it a name in the schema. Does anybody know, how to get the name of such a constraint, or how to drop it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
That is something like (for single column constaint):
To get constaint name write (in psql):
or use
Also you can get it from pgAdmin in objects tree. |
|||||
|