9 lines
134 B
MySQL
9 lines
134 B
MySQL
|
create table mapping
|
||
|
(
|
||
|
id serial not null
|
||
|
constraint mapping_pkey
|
||
|
primary key,
|
||
|
site_code text,
|
||
|
bot_id text
|
||
|
);
|