/*
  Warnings:

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

*/
-- AlterTable
ALTER TABLE "Company" DROP COLUMN "contactPostion",
ADD COLUMN     "contactPosition" VARCHAR(255) NOT NULL;
