ct: [ADMIN] dropping a table
constraint
I needed to add a FK constraint to a table where one was forgotten. I
found an add constraint command and used it:
ALTER TABLE file_info add foreign key (al_fk) references arraylayout(al_pk);
However, I wanted to name the constraint. It now looks like
I needed to add a FK constraint to a table where one was forgotten. I
found an add constraint command and used it:
ALTER TABLE file_info add foreign key (al_fk) references
arraylayout(al_pk);
However, I wanted to name the constraint. It now looks like this:
$1 FOREIGN KEY (al_fk) REFERENCES