event_push_actions_staging
This data as json
0 records
CREATE TABLE "event_push_actions_staging" (
event_id TEXT NOT NULL,
user_id TEXT NOT NULL,
actions TEXT NOT NULL,
notif SMALLINT NOT NULL,
highlight SMALLINT NOT NULL,
unread SMALLINT,
thread_id TEXT,
inserted_ts BIGINT,
CONSTRAINT event_push_actions_staging_thread_id CHECK (thread_id is NOT NULL)
);
CREATE INDEX event_push_actions_staging_id ON event_push_actions_staging(event_id);