mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-14 12:41:03 +00:00
8 lines
227 B
SQL
8 lines
227 B
SQL
CREATE TABLE newsletter_issues (
|
|
newsletter_issue_id uuid NOT NULL,
|
|
title TEXT NOT NULL,
|
|
text_content TEXT NOT NULL,
|
|
html_content TEXT NOT NULL,
|
|
published_at TEXT NOT NULL,
|
|
PRIMARY KEY(newsletter_issue_id)
|
|
);
|