1
0
mirror of synced 2024-11-22 04:26:01 +03:00
mg-transport-telegram/migrations/1528208070_app.up.sql

13 lines
305 B
MySQL
Raw Normal View History

2018-06-07 15:35:27 +03:00
create table users
(
id serial not null
2018-06-08 12:13:02 +03:00
constraint users_pkey
primary key,
external_id integer not null,
2018-06-08 12:13:02 +03:00
user_photo_url varchar(255),
user_photo_id varchar(100),
created_at timestamp with time zone,
updated_at timestamp with time zone,
2018-06-08 13:57:51 +03:00
constraint users_key unique(external_id)
);