14 lines
190 B
MySQL
14 lines
190 B
MySQL
|
-- Deploy camper:redsys_integration to pg
|
||
|
-- requires: schema_camper
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to camper, public;
|
||
|
|
||
|
create type redsys_integration as enum (
|
||
|
'insite',
|
||
|
'redirect'
|
||
|
);
|
||
|
|
||
|
commit;
|