First protorype

This commit is contained in:
Alexandru Eduard Farcas
2025-07-04 12:24:00 +03:00
parent 325b0bdc30
commit 024e5ca656
26 changed files with 1278 additions and 1 deletions
@@ -0,0 +1,12 @@
/*
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;