mirror of
https://github.com/Kevsl/crypto-exchange-api.git
synced 2026-02-13 04:56:13 +01:00
testing all features
This commit is contained in:
16
prisma/migrations/20240605230717_/migration.sql
Normal file
16
prisma/migrations/20240605230717_/migration.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to alter the column `value` on the `Crypto` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Integer`.
|
||||
- You are about to alter the column `amount_traded` on the `Trade` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Integer`.
|
||||
- You are about to alter the column `amount` on the `UserHasCrypto` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Integer`.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Crypto" ALTER COLUMN "value" SET DATA TYPE INTEGER;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "Trade" ALTER COLUMN "amount_traded" SET DATA TYPE INTEGER;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "UserHasCrypto" ALTER COLUMN "amount" SET DATA TYPE INTEGER;
|
||||
Reference in New Issue
Block a user