generated from it-at-m/oss-repository-en-template
-
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.
Flyway Skripte für TheEntity für die Kompatibiltät wieder da
- Loading branch information
1 parent
1074f1c
commit 97f2a17
Showing
4 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
wls-basisdaten-service/src/main/resources/db/migrations/h2/V0_1__createTableTheEntity.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE theEntity | ||
( | ||
id varchar2(36) NOT NULL primary key, | ||
textAttribute varchar2(8) NOT NULL | ||
) |
1 change: 1 addition & 0 deletions
1
wls-basisdaten-service/src/main/resources/db/migrations/h2/V9_0__dropTableTheEntity.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE theEntity |
5 changes: 5 additions & 0 deletions
5
...basisdaten-service/src/main/resources/db/migrations/oracle/V0_1__createTableTheEntity.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE theEntity | ||
( | ||
id varchar2(36) NOT NULL primary key, | ||
textAttribute varchar2(8) NOT NULL | ||
) |
1 change: 1 addition & 0 deletions
1
wls-basisdaten-service/src/main/resources/db/migrations/oracle/V9_0__dropTableTheEntity.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE theEntity |