-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(product-changelog): add version field
- Loading branch information
1 parent
220ca52
commit a14d7fc
Showing
2 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
migrations/schemas/20240116151230-alter_product_changelogs_add_version.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-- +migrate Up | ||
ALTER TABLE product_changelogs ADD COLUMN IF NOT EXISTS version text; | ||
|
||
-- +migrate Down | ||
ALTER TABLE product_changelogs DROP COLUMN IF EXISTS version; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters