-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9266067
commit b27bd9c
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- +goose Up | ||
create table posts( | ||
id UUID primary key, | ||
created_at timestamp not null, | ||
updated_at timestamp not null, | ||
title varchar(255), | ||
url varchar(255) not null unique, | ||
description varchar(255), | ||
published_at timestamp, | ||
feed_id uuid not null, | ||
constraint fk_feed_id | ||
foreign key(feed_id) | ||
references feeds(id) | ||
on delete cascade | ||
); | ||
|
||
|
||
-- +goose Down | ||
drop table posts; |