-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 Apply quick-fixes by Qodana (#1614)
* feat : initial commit of jooq-jpa integration * feat : implement code review comments * implement code review comments * 🤖 Apply quick-fixes by Qodana --------- Co-authored-by: Raja Kolli <[email protected]> Co-authored-by: qodana-bot <[email protected]>
- Loading branch information
1 parent
d893c52
commit 195a3d8
Showing
3 changed files
with
57 additions
and
57 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
...tion/boot-data-window-pagination/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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
databaseChangeLog: | ||
- includeAll: | ||
path: migration/ | ||
errorIfMissingOrEmpty: true | ||
databaseChangeLog: | ||
- includeAll: | ||
path: migration/ | ||
errorIfMissingOrEmpty: true | ||
relativeToChangelogFile: true |
6 changes: 3 additions & 3 deletions
6
jpa/multitenancy/partition/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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
databaseChangeLog: | ||
- include: | ||
file: db/changelog/db.changelog-sql-db.sql | ||
databaseChangeLog: | ||
- include: | ||
file: db/changelog/db.changelog-sql-db.sql |
100 changes: 50 additions & 50 deletions
100
...2dbc-sample/src/main/resources/db/changelog/migration/01-create_reactive_posts_table.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 |
---|---|---|
@@ -1,50 +1,50 @@ | ||
# https://docs.liquibase.com/concepts/changelogs/yaml-format.html | ||
databaseChangeLog: | ||
- property: | ||
name: stringType | ||
value: text | ||
dbms: postgres | ||
- property: | ||
name: stringType | ||
value: varchar(255) | ||
dbms: '!postgres' | ||
- changeSet: | ||
author: appUser | ||
id: createTable-reactive_posts | ||
changes: | ||
- createSequence: | ||
sequenceName: reactive_posts_seq | ||
incrementBy: 50 | ||
startValue: 1 | ||
- createTable: | ||
tableName: reactive_posts | ||
columns: | ||
- column: | ||
name: id | ||
type: bigint | ||
defaultValueSequenceNext: reactive_posts_seq | ||
constraints: | ||
primaryKey: true | ||
nullable: false | ||
- column: | ||
name: title | ||
type: ${stringType} | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: content | ||
type: ${stringType} | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: created_at | ||
type: timestamptz | ||
- column: | ||
name: created_by | ||
type: ${stringType} | ||
- column: | ||
name: updated_at | ||
type: timestamptz | ||
- column: | ||
name: updated_by | ||
type: ${stringType} | ||
# https://docs.liquibase.com/concepts/changelogs/yaml-format.html | ||
databaseChangeLog: | ||
- property: | ||
name: stringType | ||
value: text | ||
dbms: postgres | ||
- property: | ||
name: stringType | ||
value: varchar(255) | ||
dbms: '!postgres' | ||
- changeSet: | ||
author: appUser | ||
id: createTable-reactive_posts | ||
changes: | ||
- createSequence: | ||
sequenceName: reactive_posts_seq | ||
incrementBy: 50 | ||
startValue: 1 | ||
- createTable: | ||
tableName: reactive_posts | ||
columns: | ||
- column: | ||
name: id | ||
type: bigint | ||
defaultValueSequenceNext: reactive_posts_seq | ||
constraints: | ||
primaryKey: true | ||
nullable: false | ||
- column: | ||
name: title | ||
type: ${stringType} | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: content | ||
type: ${stringType} | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: created_at | ||
type: timestamptz | ||
- column: | ||
name: created_by | ||
type: ${stringType} | ||
- column: | ||
name: updated_at | ||
type: timestamptz | ||
- column: | ||
name: updated_by | ||
type: ${stringType} |