-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aws-localstack
- Loading branch information
Showing
8 changed files
with
15 additions
and
22 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
5 changes: 5 additions & 0 deletions
5
aws-secretmanager-project/src/main/resources/db/changelog/db.changelog-master.yaml
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 @@ | ||
databaseChangeLog: | ||
- includeAll: | ||
path: /migration | ||
relativeToChangelogFile: true | ||
errorsOnMissingFile: true |
7 changes: 7 additions & 0 deletions
7
...etmanager-project/src/main/resources/db/changelog/migration/V1_create_customers_table.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,7 @@ | ||
create sequence customers_seq start with 1 increment by 50; | ||
|
||
create table customers ( | ||
id bigint DEFAULT nextval('customers_seq') not null, | ||
text varchar(1024) not null, | ||
primary key (id) | ||
); |
Empty file.
7 changes: 0 additions & 7 deletions
7
aws-secretmanager-project/src/main/resources/db/migration/h2/V2__create_customers_table.sql
This file was deleted.
Oops, something went wrong.
Empty file removed
0
aws-secretmanager-project/src/main/resources/db/migration/postgresql/V1__01_init.sql
Empty file.
7 changes: 0 additions & 7 deletions
7
...manager-project/src/main/resources/db/migration/postgresql/V2__create_customers_table.sql
This file was deleted.
Oops, something went wrong.