1
0
mirror of synced 2025-02-24 16:03:14 +03:00
2018-05-23 17:40:09 +03:00

14 lines
269 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
);