mirror of
https://github.com/Kevsl/crypto-exchange-api.git
synced 2026-02-13 21:16:14 +01:00
testing all features
This commit is contained in:
11
prisma/migrations/20240605231422_/migration.sql
Normal file
11
prisma/migrations/20240605231422_/migration.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- The primary key for the `UserHasCrypto` table will be changed. If it partially fails, the table could be left without primary key constraint.
|
||||
- The required column `id` was added to the `UserHasCrypto` table with a prisma-level default value. This is not possible if the table is not empty. Please add this column as optional, then populate it before making it required.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "UserHasCrypto" DROP CONSTRAINT "UserHasCrypto_pkey",
|
||||
ADD COLUMN "id" TEXT NOT NULL,
|
||||
ADD CONSTRAINT "UserHasCrypto_pkey" PRIMARY KEY ("id");
|
||||
Reference in New Issue
Block a user