Skip to content

Commit

Permalink
fix: liquibase changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
oksana-miazina committed Apr 23, 2024
1 parent 45cccc4 commit 8859ab3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ databaseChangeLog:
autoIncrement: true
constraints:
primaryKey: true
nullable: false
- column:
name: title
type: varchar(255)
Expand All @@ -37,4 +36,10 @@ databaseChangeLog:
type: varchar(255)
- column:
name: cover_image
type: varchar(255)
type: varchar(2048)
- column:
name: is_deleted
type: boolean
defaultValueBoolean: false
constraints:
nullable: false

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
databaseChangeLog:
- include:
file: /db/changelog/changes/01-create-books-table.yml
- include:
file: /db/changelog/changes/02-add-column-is-deleted-books-table.yml
- include:
file: /db/changelog/changes/03-add-not-null-constraint-to-is-deleted-books-table.yml

0 comments on commit 8859ab3

Please sign in to comment.