Skip to content

Commit

Permalink
feat: обновление liquibase для видов и пользователей
Browse files Browse the repository at this point in the history
  • Loading branch information
svifty7 committed Mar 3, 2025
1 parent cf9879c commit 46acbf4
Showing 1 changed file with 62 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
databaseChangeLog:
- changeSet:
id: 1741035749924-4
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- dropForeignKeyConstraint:
baseTableName: book_tags
constraintName: fk_book_tags_on_book
- changeSet:
id: 1741035749924-5
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- dropForeignKeyConstraint:
baseTableName: species
constraintName: fk_species_on_source
- changeSet:
id: 1741035749924-1
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- addColumn:
columns:
- column:
name: book
type: VARCHAR(255)
- column:
name: user
type: VARCHAR(255)
tableName: species
- changeSet:
id: 1741035749924-3
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- addForeignKeyConstraint:
baseColumnNames: book
baseTableName: species
constraintName: FK_SPECIES_ON_BOOK
referencedColumnNames: source_acronym
referencedTableName: books
- changeSet:
id: 1741035749924-7
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- dropTable:
cascadeConstraints: true
tableName: book_tags
- changeSet:
id: 1741035749924-9
author: svifty7
objectQuotingStrategy: QUOTE_ONLY_RESERVED_WORDS
changes:
- dropColumn:
columnName: short_name
tableName: species
- dropColumn:
columnName: source
tableName: species

0 comments on commit 46acbf4

Please sign in to comment.