1
0
mirror of synced 2024-11-22 12:26:02 +03:00
mg-transport-telegram/migrations/1525944630_app.up.sql

14 lines
269 B
MySQL
Raw Normal View History

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
);