jws-backend/prisma/migrations/20240617105818_add_field/migration.sql

10 lines
276 B
MySQL
Raw Normal View History

2024-06-17 17:58:30 +07:00
/*
Warnings:
- Added the required column `personName` to the `Customer` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Customer" ADD COLUMN "personName" TEXT NOT NULL,
ADD COLUMN "personNameEN" TEXT;