16 lines
430 B
SQL
16 lines
430 B
SQL
-- This file should undo anything in `up.sql`
|
|
alter table eu_positions_templates
|
|
drop constraint eu_positions_templates_pk;
|
|
|
|
alter table eu_positions_templates
|
|
add constraint eu_positions_templates_pk
|
|
primary key (position_entity_id, template_id);
|
|
|
|
alter table eu_positions_templates
|
|
drop position_template_id;
|
|
|
|
alter table eu_positions_templates
|
|
drop num;
|
|
|
|
alter table eu_positions_templates
|
|
drop tag; |