mirror of
https://github.com/EdiFarcas/Car-Fuel-Tracking-App.git
synced 2026-06-22 09:00:56 +03:00
13 lines
555 B
SQL
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;
|