mirror of
https://github.com/EdiFarcas/Car-Fuel-Tracking-App.git
synced 2026-06-29 09:00:53 +03:00
First protorype
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user