Open
Description
Feature request
Is your feature request related to a problem? Please describe.
It would be nice to be able to specify constraints within bot a table and a column
For example:
create table profiles (
username text,
unique(username)
)
alter:
alter table profiles
add constraint check_username
check (username ~* '^[a-zA-Z0-9_]*$' );
Describe the solution you'd like
It may need a similar treatment as the default values:
postgres-meta/test/integration/index.spec.js
Line 352 in f35c38f