Skip to content

Commit

Permalink
🤖 Apply quick-fixes by Qodana (#1614)
Browse files Browse the repository at this point in the history
* 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
3 people authored Jan 5, 2025
1 parent d893c52 commit 195a3d8
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
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
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
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}

0 comments on commit 195a3d8

Please sign in to comment.