bitque/migrations/2020-03-25-150007_create_users/up.sql

10 lines
285 B
SQL

CREATE TABLE users (
id serial primary key not null,
name text not null,
email text not null,
avatar_url text,
project_id integer not null references projects (id),
created_at timestamp not null default now(),
updated_at timestamp not null default now()
);