Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ€– Apply quick-fixes by Qodana #1614

Merged
merged 5 commits into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}
Loading