chirpy_server/sql/schema/002_chirps.sql

12 lines
257 B
MySQL
Raw Normal View History

2024-10-23 22:16:51 +02:00
-- +goose Up
CREATE TABLE chirps (
id UUID PRIMARY KEY,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
body TEXT NOT NULL,
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE
);
-- +goose Down
DROP TABLE chirps;