Skip to content

Commit

Permalink
remove whitespaces of create sequences tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Dec 8, 2023
1 parent b698892 commit 09491c0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions backend/src/main/resources/db/migration/V1_0_0__baseLine.sql
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
create sequence if not exists sequence_key_result ;
create sequence if not exists sequence_key_result;

create sequence if not exists sequence_measure ;
create sequence if not exists sequence_measure;

create sequence if not exists sequence_objective ;
create sequence if not exists sequence_objective;

create sequence if not exists sequence_person ;
create sequence if not exists sequence_person;

create sequence if not exists sequence_quarter ;
create sequence if not exists sequence_quarter;

create sequence if not exists sequence_team ;
create sequence if not exists sequence_team;

create table if not exists person
(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create sequence if not exists sequence_action ;
create sequence if not exists sequence_action;
ALTER SEQUENCE sequence_action RESTART WITH 1000;
create table if not exists action
(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create sequence if not exists sequence_alignment ;
create sequence if not exists sequence_alignment;

create table if not exists alignment
(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create sequence if not exists sequence_completed ;
create sequence if not exists sequence_completed;
alter sequence sequence_completed restart with 1000;

create table if not exists completed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create sequence if not exists sequence_organisation ;
create sequence if not exists sequence_organisation;
Alter SEQUENCE sequence_organisation RESTART WITH 1000;

create table if not exists organisation
Expand Down

0 comments on commit 09491c0

Please sign in to comment.