/*
  Warnings:

  - You are about to drop the column `cashiPointsCost` on the `coupons` table. All the data in the column will be lost.
  - You are about to drop the column `cashiPointsEarned` on the `sales` table. All the data in the column will be lost.
  - You are about to drop the column `cashiPoints` on the `users` table. All the data in the column will be lost.

*/
-- DropIndex
DROP INDEX "coupons_cashiPointsCost_idx";

-- AlterTable
ALTER TABLE "coupons" DROP COLUMN "cashiPointsCost";

-- AlterTable
ALTER TABLE "sales" DROP COLUMN "cashiPointsEarned";

-- AlterTable
ALTER TABLE "users" DROP COLUMN "cashiPoints";
