/*
  Warnings:

  - You are about to drop the column `actif` on the `Company` table. All the data in the column will be lost.
  - You are about to drop the column `actif` on the `User` table. All the data in the column will be lost.

*/
-- AlterTable
ALTER TABLE "Company" DROP COLUMN "actif",
ADD COLUMN     "active" BOOLEAN NOT NULL DEFAULT true;

-- AlterTable
ALTER TABLE "User" DROP COLUMN "actif",
ADD COLUMN     "active" BOOLEAN NOT NULL DEFAULT true;
