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

s.event-exposed.0.1.4.source-code.outbox_events_postgres_table.sql Maven / Gradle / Ivy

 CREATE TABLE outbox_events (
                id uuid NOT NULL PRIMARY KEY,
                event jsonb NOT NULL,
                created_at timestamp with time zone DEFAULT timezone('UTC'::text, statement_timestamp()) NOT NULL,
                published_at timestamp with time zone
            );
CREATE INDEX events_publisshed_idx ON outbox_events (published_at);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy