11 lines
148 B
MySQL
11 lines
148 B
MySQL
|
-- Revert camper:campsite__info from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.campsite
|
||
|
drop column if exists info1
|
||
|
, drop column if exists info2
|
||
|
;
|
||
|
|
||
|
commit;
|