1
0
Fork 0
mirror of synced 2025-04-09 12:02:01 +00:00
mg-transport-telegram/migrations/1528208070_app.up.sql
2018-06-08 14:07:29 +03:00

12 lines
305 B
SQL

create table users
(
id serial not null
constraint users_pkey
primary key,
external_id integer not null,
user_photo_url varchar(255),
user_photo_id varchar(100),
created_at timestamp with time zone,
updated_at timestamp with time zone,
constraint users_key unique(external_id)
);