strong textActually I'm using pgAdmin to manage PostgreSQL development database in a rails application.
I've defined the following constraints on USERS table:
CONSTRAINT users_pkey PRIMARY KEY (id ),
CONSTRAINT users_name_key UNIQUE (name ),
CONSTRAINT users_age_check CHECK (age > 16),
But when I do rake:db:test:clone
the test database copy the development structure except the above constraints.