10 lines
121 B
MySQL
10 lines
121 B
MySQL
|
-- Revert camper:service__position from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.service
|
||
|
drop column if exists position
|
||
|
;
|
||
|
|
||
|
commit;
|