/*
  Warnings:

  - You are about to drop the column `so_email` on the `site_otp` table. All the data in the column will be lost.
  - You are about to drop the column `so_mobile` on the `site_otp` table. All the data in the column will be lost.
  - Added the required column `so_entity` to the `site_otp` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `site_otp` DROP COLUMN `so_email`,
    DROP COLUMN `so_mobile`,
    ADD COLUMN `so_entity` VARCHAR(255) NOT NULL,
    ADD COLUMN `so_type` INTEGER NULL DEFAULT 0;
