All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.aroma.sql.ddl.reactions_ddl.sql Maven / Gradle / Ivy

---------------------------------------
-- DDL FOR AROMA REACTIONS
--
-- Reactions are actions taken by Aroma when messages are received
-- matching a given criteria
---------------------------------------

CREATE TABLE IF NOT EXISTS Reactions
(
    owner_id             UUID,
    serialized_reactions TEXT[] DEFAULT ARRAY[]::TEXT[],

    PRIMARY KEY (owner_id)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy