-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a 'shipping_address' field to the 'orders' table to store the s…
…hipping address for each order.
- Loading branch information
GitHub Gen Changes
committed
Aug 6, 2024
1 parent
2fa540e
commit 3429506
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
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,2 @@ | ||
-- Modify "orders" table | ||
ALTER TABLE `orders` ADD COLUMN `shipping_address` varchar(255) NOT NULL; | ||
Check warning on line 2 in dirs/ecommerce/migrations/20240806130855.sql GitHub Actions / atlasdata dependent changes detected
|
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
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