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