-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1e0867
commit 04e70de
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/main/resources/liquibase/mysql/setup/ddl/academic-title.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CREATE TABLE academic_title( | ||
CREATE TABLE IF NOT EXISTS academic_title( | ||
id BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, | ||
name VARCHAR(255) NOT NULL | ||
); |
2 changes: 1 addition & 1 deletion
2
src/main/resources/liquibase/mysql/setup/ddl/education-title.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CREATE TABLE education_title( | ||
CREATE TABLE IF NOT EXISTS education_title( | ||
id BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, | ||
name VARCHAR(255) NOT NULL | ||
); |
2 changes: 1 addition & 1 deletion
2
src/main/resources/liquibase/mysql/setup/ddl/scientific-field.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CREATE TABLE scientific_field( | ||
CREATE TABLE IF NOT EXISTS scientific_field( | ||
id BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, | ||
name VARCHAR(255) NOT NULL | ||
); |