You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR scope is to create the new delivery target internally for Coder Inbox. It includes :
The DB Migration
The logic to insert notifications to Coder Inbox
DB Migration discussed :
CREATETABLEnotifications_inbox (
id UUID PRIMARY KEY,
user_id UUID, //Foreign key to users
title TEXT,
content TEXT,
read_at TIMESTAMP, // using NULL to know that the notification has not been read
created_at TIMESTAMPNOT NULL DEFAULT NOW()
);
This PR also includes RBAC policy.
The text was updated successfully, but these errors were encountered:
Part of the main PR visible here.
This PR scope is to create the new delivery target internally for Coder Inbox. It includes :
DB Migration discussed :
This PR also includes RBAC policy.
The text was updated successfully, but these errors were encountered: