/*
  Warnings:

  - A unique constraint covering the columns `[telegramId]` on the table `User` will be added. If there are existing duplicate values, this will fail.

*/
-- AlterTable
ALTER TABLE `User` ADD COLUMN `telegramId` VARCHAR(191) NULL;

-- CreateIndex
CREATE UNIQUE INDEX `User_telegramId_key` ON `User`(`telegramId`);
