bitque/migrations/2020-03-25-150009_create_comments/up.sql

9 lines
290 B
SQL

CREATE TABLE comments (
id serial primary key not null,
body text not null,
user_id integer not null references users (id),
issue_id integer not null references issues (id),
created_at timestamp not null default now(),
updated_at timestamp not null default now()
);