Skip to content

Commit

Permalink
[liquibase in order service] add missing column in order service (#575)
Browse files Browse the repository at this point in the history
* add missing col in liquibase in order service

* add blank line
  • Loading branch information
LEHOANGGLAM authored Apr 3, 2023
1 parent 8893d5f commit 568f4e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions order/src/main/resources/db/changelog/ddl/changelog-0003.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
alter table if exists "order"
add column created_by varchar(255),
add column created_on timestamp(6),
add column last_modified_by varchar(255),
add column last_modified_on timestamp(6);

0 comments on commit 568f4e1

Please sign in to comment.