14 lines
548 B
SQL
14 lines
548 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `customer_name` to the `court_booking_logs` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `customer_phone` to the `court_booking_logs` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterEnum
|
|
ALTER TYPE "CourtBookingStatus" ADD VALUE 'NOSHOW';
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "court_booking_logs" ADD COLUMN "customer_name" VARCHAR(120) NOT NULL,
|
|
ADD COLUMN "customer_phone" VARCHAR(30) NOT NULL;
|