/*
  Warnings:

  - You are about to drop the column `datetime` on the `trade_executions` table. All the data in the column will be lost.
  - You are about to drop the column `is_closing` on the `trade_executions` table. All the data in the column will be lost.
  - You are about to drop the column `default` on the `trading_wallets` table. All the data in the column will be lost.

*/
-- AlterTable
ALTER TABLE "trade_executions" DROP COLUMN "datetime",
DROP COLUMN "is_closing",
ALTER COLUMN "fee" DROP NOT NULL,
ALTER COLUMN "fee" DROP DEFAULT,
ALTER COLUMN "profit_loss" DROP NOT NULL,
ALTER COLUMN "profit_loss" DROP DEFAULT;

-- AlterTable
ALTER TABLE "trading_wallets" DROP COLUMN "default";
