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