1
0
mirror of synced 2024-11-21 20:16:02 +03:00
mg-transport-telegram/migrations/1525944630_app.up.sql

14 lines
269 B
MySQL
Raw Permalink 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
);