mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-08 15:00:37 -04:00
10 lines
172 B
SQL
10 lines
172 B
SQL
-- Up
|
|
|
|
CREATE TABLE subscription_messages (
|
|
id TEXT PRIMARY KEY,
|
|
subscription_id TEXT NOT NULL REFERENCES subscriptions (id),
|
|
campaign TEXT NOT NULL
|
|
)
|
|
|
|
-- Down
|