Displaying 2 results from an estimated 2 matches for "clients_pkey".
Did you mean:
client_key
2006 Mar 25
1
foreign keys on migration
...(id)''
execute ''ALTER TABLE ONLY case_managers ADD CONSTRAINT
case_managers_pkey PRIMARY KEY (id)''
execute ''ALTER TABLE ONLY facilities ADD CONSTRAINT facilities_pkey
PRIMARY KEY (id)''
execute ''ALTER TABLE ONLY clients ADD CONSTRAINT clients_pkey
PRIMARY KEY (id)''
execute ''ALTER TABLE ONLY users ADD CONSTRAINT users_pkey PRIMARY
KEY (id)''
# set up foreign key restratints for PostgreSQL
execute ''ALTER TABLE ONLY clients ADD CONSTRAINT fk_cp_case_manager
FOREIGN KEY (case_manager_id) REFERENCES...
2006 Feb 13
8
postgres and rake
...acements"
psql:db/development_structure.sql:140: NOTICE: ALTER TABLE / ADD
PRIMARY KEY will create implicit index "referral_notes_pkey" for table
"referral_notes"
psql:db/development_structure.sql:149: NOTICE: ALTER TABLE / ADD
PRIMARY KEY will create implicit index "clients_pkey" for table
"clients"
psql:db/development_structure.sql:158: NOTICE: ALTER TABLE / ADD
PRIMARY KEY will create implicit index "facilities_pkey" for table
"facilities"
psql:db/development_structure.sql:211: ERROR: must be owner of schema
public
Apparently, I can&...