11 lines
180 B
MySQL
11 lines
180 B
MySQL
|
-- Deploy camper:redsys_environment to pg
|
||
|
-- requires: schema_camper
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to camper, public;
|
||
|
|
||
|
create type redsys_environment as enum ('test', 'live');
|
||
|
|
||
|
commit;
|