/*
  Warnings:

  - You are about to drop the column `transaction_id` on the `Billplz` table. All the data in the column will be lost.
  - You are about to drop the column `transaction_status` on the `Billplz` table. All the data in the column will be lost.
  - A unique constraint covering the columns `[billplz_id]` on the table `Billplz` will be added. If there are existing duplicate values, this will fail.

*/
-- DropIndex
DROP INDEX "Billplz_transaction_id_key";

-- AlterTable
ALTER TABLE "Billplz" DROP COLUMN "transaction_id",
DROP COLUMN "transaction_status";

-- CreateIndex
CREATE UNIQUE INDEX "Billplz_billplz_id_key" ON "Billplz"("billplz_id");
