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

db.migration.V007__query_completion_event_table.sql Maven / Gradle / Ivy

There is a newer version: 0.30
Show newest version
CREATE TABLE query_completion_event
(
  id             BIGSERIAL PRIMARY KEY NOT NULL,
  event          jsonb                 NOT NULL
);

ALTER TABLE executions ADD COLUMN query_completion_event_id BIGINT;
ALTER TABLE executions ADD FOREIGN KEY (query_completion_event_id) REFERENCES query_completion_event (id);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy