Files
huly-platform/packages/postgres/migrations/05_notificationContext.sql
T
Kristina Fefelova 9ecdc931e4 Fix deps
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-12-02 18:54:23 +04:00

12 lines
369 B
SQL

CREATE TABLE IF NOT EXISTS notification_context
(
workspace_id UUID NOT NULL,
card_id UUID NOT NULL,
huly_id VARCHAR(255) NOT NULL, /* Or maybe account id or something else */
last_view_timestamp TIMESTAMP,
last_update_timestamp TIMESTAMP,
PRIMARY KEY (workspace_id, card_id, huly_id)
);