Files
Alexandru Eduard Farcas 024e5ca656 First protorype
2025-07-04 12:24:00 +03:00

13 lines
555 B
SQL

/*
Warnings:
- Added the required column `make` to the `Car` table without a default value. This is not possible if the table is not empty.
- Added the required column `model` to the `Car` table without a default value. This is not possible if the table is not empty.
- Added the required column `year` to the `Car` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Car" ADD COLUMN "make" TEXT NOT NULL,
ADD COLUMN "model" TEXT NOT NULL,
ADD COLUMN "year" INTEGER NOT NULL;