Skip to content

Commit

Permalink
Increment fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dukris committed Feb 14, 2024
1 parent f0fd18c commit 8518ac4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/db/changelog/2024/002-tickets.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

--liquibase formatted sql

--changeset hizmailovich:1
--changeset hizmailovich:4
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

--changeset hizmailovich:2
--changeset hizmailovich:5
CREATE SCHEMA IF NOT EXISTS projects;

--changeset hizmailovich:3
--changeset hizmailovich:6
CREATE TABLE IF NOT EXISTS projects.tickets
(
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/db/changelog/2024/003-naming.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

--liquibase formatted sql

--changeset hizmailovich:1
--changeset hizmailovich:7
ALTER TABLE projects.projects RENAME TO project;
ALTER TABLE projects.performers RENAME TO performer;
ALTER TABLE projects.tickets RENAME TO ticket;
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@

--liquibase formatted sql

--changeset hizmailovich:1
--changeset hizmailovich:8
ALTER TABLE projects.performer RENAME COLUMN email TO login;

0 comments on commit 8518ac4

Please sign in to comment.