/*
  Warnings:

  - The `step` column on the `TelegramSession` table would be dropped and recreated. This will lead to data loss if there is data in the column.

*/
-- CreateEnum
CREATE TYPE "TelegramSessionStep" AS ENUM ('IDLE', 'WAITING_CHANNEL_ID', 'WAITING_CHANNEL_TITLE', 'WAITING_PLAN_PRICE', 'WAITING_PLAN_DURATION');

-- AlterTable
ALTER TABLE "TelegramSession" DROP COLUMN "step",
ADD COLUMN     "step" "TelegramSessionStep" NOT NULL DEFAULT 'IDLE';
