/*
  Warnings:

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

*/
-- AlterTable
ALTER TABLE "tour" ADD COLUMN     "included" TEXT[] DEFAULT ARRAY[]::TEXT[],
ADD COLUMN     "maxGuests" INTEGER DEFAULT 10,
ADD COLUMN     "reviewCount" INTEGER NOT NULL DEFAULT 0;

-- AlterTable
ALTER TABLE "tour_image" DROP COLUMN "path",
ADD COLUMN     "url" TEXT NOT NULL;
