mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
8 lines
223 B
SQL
8 lines
223 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE notifications (
|
|
id SERIAL PRIMARY KEY,
|
|
title VARCHAR NOT NULL DEFAULT '',
|
|
content TEXT,
|
|
link VARCHAR,
|
|
user_id INTEGER REFERENCES users(id) ON DELETE CASCADE NOT NULL
|
|
)
|