added vendors table
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `address` on the `Vendor` table. All the data in the column will be lost.
|
||||
- Added the required column `street` to the `Vendor` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Vendor" DROP COLUMN "address",
|
||||
ADD COLUMN "street" TEXT NOT NULL;
|
||||
Reference in New Issue
Block a user