Skip to content

Commit

Permalink
add posts table
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelvalente committed Jul 6, 2024
1 parent 9266067 commit b27bd9c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions sql/schema/006_add_posts_table.sql
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;

0 comments on commit b27bd9c

Please sign in to comment.