Files
omnivore/packages/db/migrations/0099.do.rules.sql
2022-11-18 14:33:27 +08:00

26 lines
854 B
PL/PgSQL
Executable File

-- Type: DO
-- Name: rules
-- Description: Create rules table which contains user defines rules and actions
BEGIN;
CREATE TABLE omnivore.rules (
id uuid PRIMARY KEY DEFAULT uuid_generate_v1mc(),
user_id uuid NOT NULL REFERENCES omnivore.user ON DELETE CASCADE,
name text NOT NULL,
description text,
filter text NOT NULL,
actions json NOT NULL, -- array of actions of type {type: 'action_type', params: [action_params]}
enabled boolean NOT NULL DEFAULT true,
created_at timestamptz NOT NULL DEFAULT current_timestamp,
updated_at timestamptz NOT NULL DEFAULT current_timestamp,
UNIQUE (user_id, filter)
);
CREATE TRIGGER rules_modtime BEFORE UPDATE ON omnivore.rules
FOR EACH ROW EXECUTE PROCEDURE update_updated_at_column();
GRANT SELECT, INSERT, UPDATE, DELETE ON omnivore.rules TO omnivore_user;
COMMIT;