Routes Migrations Settings form Activation/deactivation through retailCRM/MG Transport API
10 lines
135 B
SQL
10 lines
135 B
SQL
create table mapping
|
|
(
|
|
id serial not null
|
|
constraint mapping_pkey
|
|
primary key,
|
|
site_code text,
|
|
bot_id text
|
|
);
|
|
|