1
0
mirror of synced 2024-11-22 04:26:01 +03:00
mg-transport-telegram/migrations/1525944630_app.up.sql
Alex Lushpai acb2a62da5
Initial release (#1)
Routes
Migrations
Settings form
Activation/deactivation through retailCRM/MG Transport API
2018-05-17 18:35:53 +03:00

15 lines
270 B
SQL

create table bot
(
id serial not null
constraint bot_pkey
primary key,
client_id text,
channel bigint,
token text,
name text,
created_at timestamp with time zone,
updated_at timestamp with time zone,
active boolean
);