-- CreateEnum
CREATE TYPE "TransactionReason" AS ENUM ('credit', 'debit');

-- AlterEnum
ALTER TYPE "TransactionType" ADD VALUE 'tip';

-- AlterTable
ALTER TABLE "Review" ALTER COLUMN "tip_id" DROP DEFAULT;

-- AlterTable
ALTER TABLE "Transaction" ADD COLUMN     "transaction_reason" "TransactionReason" NOT NULL DEFAULT 'credit';
