78a9b99aae
- Added `customerEmail` field to Order model. - Made `customerNote` optional in the Order model. - Updated order creation logic to send a tracking email. - Updated order validation to handle optional fields. - Refactored configurations import path from `errors/configs` to `configs`. - Minor modifications across account and order services for consistency.
4 lines
114 B
SQL
4 lines
114 B
SQL
-- AlterTable
|
|
ALTER TABLE "Order" ADD COLUMN "customerEmail" TEXT,
|
|
ALTER COLUMN "customerNote" DROP NOT NULL;
|