gator/sql/schema/003_feed_follows.sql

15 lines
379 B
MySQL
Raw Normal View History

2024-10-01 01:12:12 +01:00
-- +goose Up
CREATE TABLE feed_follows (
id UUID PRIMARY KEY,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
user_id UUID NOT NULL,
feed_id UUID NOT NULL,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE,
FOREIGN KEY (feed_id) REFERENCES feeds(id) ON DELETE CASCADE,
UNIQUE(user_id, feed_id)
);
-- +goose Down
DROP TABLE feed_follows;