move to monorepo dir

This commit is contained in:
Jai A
2024-10-16 14:11:42 -07:00
parent ff7975773e
commit e3a3379615
756 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
-- Add migration script here
CREATE TABLE notifications (
id bigint PRIMARY KEY,
user_id bigint REFERENCES users NOT NULL,
title varchar(255) NOT NULL,
text varchar(2048) NOT NULL,
link varchar(2048) NOT NULL,
created timestamptz DEFAULT CURRENT_TIMESTAMP NOT NULL,
read boolean DEFAULT FALSE NOT NULL
);
CREATE TABLE notifications_actions (
id serial PRIMARY KEY,
notification_id bigint REFERENCES notifications NOT NULL,
title varchar(255) NOT NULL,
action_route varchar(2048) NOT NULL,
action_route_method varchar(32) NOT NULL
);