/*
  Warnings:

  - You are about to drop the column `ai_api_key` on the `sitesettings` table. All the data in the column will be lost.
  - You are about to drop the column `ai_base_url` on the `sitesettings` table. All the data in the column will be lost.
  - You are about to drop the column `ai_model` on the `sitesettings` table. All the data in the column will be lost.
  - You are about to drop the column `ai_provider` on the `sitesettings` table. All the data in the column will be lost.
  - You are about to drop the `aikey` table. If the table is not empty, all the data it contains will be lost.

*/
-- AlterTable
ALTER TABLE `sitesettings` DROP COLUMN `ai_api_key`,
    DROP COLUMN `ai_base_url`,
    DROP COLUMN `ai_model`,
    DROP COLUMN `ai_provider`;

-- DropTable
DROP TABLE `aikey`;
