CREATE TABLE ®istry..releases ( version FLOAT PRIMARY KEY, installed_at TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL, installer_name VARCHAR2(512 CHAR) NOT NULL, installer_email VARCHAR2(512 CHAR) NOT NULL ); COMMENT ON TABLE ®istry..releases IS 'Sqitch registry releases.'; COMMENT ON COLUMN ®istry..releases.version IS 'Version of the Sqitch registry.'; COMMENT ON COLUMN ®istry..releases.installed_at IS 'Date the registry release was installed.'; COMMENT ON COLUMN ®istry..releases.installer_name IS 'Name of the user who installed the registry release.'; COMMENT ON COLUMN ®istry..releases.installer_email IS 'Email address of the user who installed the registry release.'; CREATE TABLE ®istry..projects ( project VARCHAR2(512 CHAR) PRIMARY KEY, uri VARCHAR2(512 CHAR) NULL UNIQUE, created_at TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL, creator_name VARCHAR2(512 CHAR) NOT NULL, creator_email VARCHAR2(512 CHAR) NOT NULL ); COMMENT ON TABLE ®istry..projects IS 'Sqitch projects deployed to this database.'; COMMENT ON COLUMN ®istry..projects.project IS 'Unique Name of a project.'; COMMENT ON COLUMN ®istry..projects.uri IS 'Optional project URI'; COMMENT ON COLUMN ®istry..projects.created_at IS 'Date the project was added to the database.'; COMMENT ON COLUMN ®istry..projects.creator_name IS 'Name of the user who added the project.'; COMMENT ON COLUMN ®istry..projects.creator_email IS 'Email address of the user who added the project.'; CREATE TABLE ®istry..changes ( change_id CHAR(40) PRIMARY KEY, script_hash CHAR(40) NULL, change VARCHAR2(512 CHAR) NOT NULL, project VARCHAR2(512 CHAR) NOT NULL REFERENCES ®istry..projects(project), note VARCHAR2(4000 CHAR) DEFAULT '', committed_at TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL, committer_name VARCHAR2(512 CHAR) NOT NULL, committer_email VARCHAR2(512 CHAR) NOT NULL, planned_at TIMESTAMP WITH TIME ZONE NOT NULL, planner_name VARCHAR2(512 CHAR) NOT NULL, planner_email VARCHAR2(512 CHAR) NOT NULL, UNIQUE(project, script_hash) ); COMMENT ON TABLE ®istry..changes IS 'Tracks the changes currently deployed to the database.'; COMMENT ON COLUMN ®istry..changes.change_id IS 'Change primary key.'; COMMENT ON COLUMN ®istry..changes.script_hash IS 'Deploy script SHA-1 hash.'; COMMENT ON COLUMN ®istry..changes.change IS 'Name of a deployed change.'; COMMENT ON COLUMN ®istry..changes.project IS 'Name of the Sqitch project to which the change belongs.'; COMMENT ON COLUMN ®istry..changes.note IS 'Description of the change.'; COMMENT ON COLUMN ®istry..changes.committed_at IS 'Date the change was deployed.'; COMMENT ON COLUMN ®istry..changes.committer_name IS 'Name of the user who deployed the change.'; COMMENT ON COLUMN ®istry..changes.committer_email IS 'Email address of the user who deployed the change.'; COMMENT ON COLUMN ®istry..changes.planned_at IS 'Date the change was added to the plan.'; COMMENT ON COLUMN ®istry..changes.planner_name IS 'Name of the user who planed the change.'; COMMENT ON COLUMN ®istry..changes.planner_email IS 'Email address of the user who planned the change.'; CREATE TABLE ®istry..tags ( tag_id CHAR(40) PRIMARY KEY, tag VARCHAR2(512 CHAR) NOT NULL, project VARCHAR2(512 CHAR) NOT NULL REFERENCES ®istry..projects(project), change_id CHAR(40) NOT NULL REFERENCES ®istry..changes(change_id), note VARCHAR2(4000 CHAR) DEFAULT '', committed_at TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL, committer_name VARCHAR2(512 CHAR) NOT NULL, committer_email VARCHAR2(512 CHAR) NOT NULL, planned_at TIMESTAMP WITH TIME ZONE NOT NULL, planner_name VARCHAR2(512 CHAR) NOT NULL, planner_email VARCHAR2(512 CHAR) NOT NULL, UNIQUE(project, tag) ); COMMENT ON TABLE ®istry..tags IS 'Tracks the tags currently applied to the database.'; COMMENT ON COLUMN ®istry..tags.tag_id IS 'Tag primary key.'; COMMENT ON COLUMN ®istry..tags.tag IS 'Project-unique tag name.'; COMMENT ON COLUMN ®istry..tags.project IS 'Name of the Sqitch project to which the tag belongs.'; COMMENT ON COLUMN ®istry..tags.change_id IS 'ID of last change deployed before the tag was applied.'; COMMENT ON COLUMN ®istry..tags.note IS 'Description of the tag.'; COMMENT ON COLUMN ®istry..tags.committed_at IS 'Date the tag was applied to the database.'; COMMENT ON COLUMN ®istry..tags.committer_name IS 'Name of the user who applied the tag.'; COMMENT ON COLUMN ®istry..tags.committer_email IS 'Email address of the user who applied the tag.'; COMMENT ON COLUMN ®istry..tags.planned_at IS 'Date the tag was added to the plan.'; COMMENT ON COLUMN ®istry..tags.planner_name IS 'Name of the user who planed the tag.'; COMMENT ON COLUMN ®istry..tags.planner_email IS 'Email address of the user who planned the tag.'; CREATE TABLE ®istry..dependencies ( change_id CHAR(40) NOT NULL REFERENCES ®istry..changes(change_id) ON DELETE CASCADE, type VARCHAR2(8) NOT NULL, dependency VARCHAR2(1024 CHAR) NOT NULL, dependency_id CHAR(40) NULL REFERENCES ®istry..changes(change_id), CONSTRAINT dependencies_check CHECK ( (type = 'require' AND dependency_id IS NOT NULL) OR (type = 'conflict' AND dependency_id IS NULL) ), PRIMARY KEY (change_id, dependency) ); COMMENT ON TABLE ®istry..dependencies IS 'Tracks the currently satisfied dependencies.'; COMMENT ON COLUMN ®istry..dependencies.change_id IS 'ID of the depending change.'; COMMENT ON COLUMN ®istry..dependencies.type IS 'Type of dependency.'; COMMENT ON COLUMN ®istry..dependencies.dependency IS 'Dependency name.'; COMMENT ON COLUMN ®istry..dependencies.dependency_id IS 'Change ID the dependency resolves to.'; CREATE TYPE ®istry..sqitch_array AS varray(1024) OF VARCHAR2(512); / CREATE TABLE ®istry..events ( event VARCHAR2(6) NOT NULL CONSTRAINT events_event_check CHECK ( event IN ('deploy', 'revert', 'fail', 'merge') ), change_id CHAR(40) NOT NULL, change VARCHAR2(512 CHAR) NOT NULL, project VARCHAR2(512 CHAR) NOT NULL REFERENCES ®istry..projects(project), note VARCHAR2(4000 CHAR) DEFAULT '', requires ®istry..SQITCH_ARRAY DEFAULT ®istry..SQITCH_ARRAY() NOT NULL, conflicts ®istry..SQITCH_ARRAY DEFAULT ®istry..SQITCH_ARRAY() NOT NULL, tags ®istry..SQITCH_ARRAY DEFAULT ®istry..SQITCH_ARRAY() NOT NULL, committed_at TIMESTAMP WITH TIME ZONE DEFAULT current_timestamp NOT NULL, committer_name VARCHAR2(512 CHAR) NOT NULL, committer_email VARCHAR2(512 CHAR) NOT NULL, planned_at TIMESTAMP WITH TIME ZONE NOT NULL, planner_name VARCHAR2(512 CHAR) NOT NULL, planner_email VARCHAR2(512 CHAR) NOT NULL ); CREATE UNIQUE INDEX ®istry..events_pkey ON ®istry..events(change_id, committed_at); COMMENT ON TABLE ®istry..events IS 'Contains full history of all deployment events.'; COMMENT ON COLUMN ®istry..events.event IS 'Type of event.'; COMMENT ON COLUMN ®istry..events.change_id IS 'Change ID.'; COMMENT ON COLUMN ®istry..events.change IS 'Change name.'; COMMENT ON COLUMN ®istry..events.project IS 'Name of the Sqitch project to which the change belongs.'; COMMENT ON COLUMN ®istry..events.note IS 'Description of the change.'; COMMENT ON COLUMN ®istry..events.requires IS 'Array of the names of required changes.'; COMMENT ON COLUMN ®istry..events.conflicts IS 'Array of the names of conflicting changes.'; COMMENT ON COLUMN ®istry..events.tags IS 'Tags associated with the change.'; COMMENT ON COLUMN ®istry..events.committed_at IS 'Date the event was committed.'; COMMENT ON COLUMN ®istry..events.committer_name IS 'Name of the user who committed the event.'; COMMENT ON COLUMN ®istry..events.committer_email IS 'Email address of the user who committed the event.'; COMMENT ON COLUMN ®istry..events.planned_at IS 'Date the event was added to the plan.'; COMMENT ON COLUMN ®istry..events.planner_name IS 'Name of the user who planed the change.'; COMMENT ON COLUMN ®istry..events.planner_email IS 'Email address of the user who plan planned the change.';