-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: George Gastaldi <[email protected]>
- Loading branch information
Showing
11 changed files
with
116 additions
and
25 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
5 changes: 3 additions & 2 deletions
5
integration-tests/flyway/src/main/resources/db/location1/V1.0.1__Quarkus.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,7 +1,8 @@ | ||
CREATE TABLE TEST_SCHEMA.quarkus_table2 | ||
( | ||
id INT, | ||
name VARCHAR(20) | ||
name VARCHAR(20), | ||
createdBy VARCHAR(100) DEFAULT CURRENT_USER NOT NULL | ||
); | ||
INSERT INTO TEST_SCHEMA.quarkus_table2(id, name) | ||
VALUES (1, '1.0.1 #[title]'); | ||
VALUES (1, '1.0.1 #[title]'); |
6 changes: 3 additions & 3 deletions
6
integration-tests/flyway/src/main/resources/db/location2/V1.0.0__Quarkus.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,7 +1,7 @@ | ||
CREATE TABLE TEST_SCHEMA.quarkus | ||
( | ||
id INT, | ||
name VARCHAR(20) | ||
name VARCHAR(20), | ||
createdBy VARCHAR(100) DEFAULT CURRENT_USER NOT NULL | ||
); | ||
INSERT INTO TEST_SCHEMA.quarkus(id, name) | ||
VALUES (1, '#[foo]'); | ||
INSERT INTO TEST_SCHEMA.quarkus(id, name) VALUES (1, '#[foo]'); |
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,2 @@ | ||
CREATE USER scott with login password 'tiger'; | ||
GRANT ALL ON DATABASE quarkus TO scott; |
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