Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Djordje1998 committed May 3, 2024
1 parent f1e0867 commit 04e70de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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
);
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
);
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
);

0 comments on commit 04e70de

Please sign in to comment.