/*
  Warnings:

  - You are about to drop the column `adresse` on the `Appointment` table. All the data in the column will be lost.
  - You are about to alter the column `time` on the `Appointment` table. The data in that column could be lost. The data in that column will be cast from `Text` to `VarChar(10)`.
  - Added the required column `address` to the `Appointment` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE "Appointment" DROP COLUMN "adresse",
ADD COLUMN     "address" VARCHAR(250) NOT NULL,
ALTER COLUMN "time" SET DATA TYPE VARCHAR(10);
