1
0
mirror of synced 2024-11-21 20:16:02 +03:00
mg-transport-telegram/migrations/1525942800_app.up.sql
2018-05-23 17:40:09 +03:00

15 lines
300 B
SQL

create table connection
(
id serial not null
constraint connection_pkey
primary key,
client_id text,
api_key text,
api_url text,
mg_url text,
mg_token text,
created_at timestamp with time zone,
updated_at timestamp with time zone,
active boolean
);