11 lines
165 B
MySQL
11 lines
165 B
MySQL
|
-- Deploy camper:service__position to pg
|
||
|
-- requires: service
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.service
|
||
|
add column position integer not null default 2147483647
|
||
|
;
|
||
|
|
||
|
commit;
|