/*
  Warnings:

  - A unique constraint covering the columns `[name]` on the table `Commodity` will be added. If there are existing duplicate values, this will fail.
  - A unique constraint covering the columns `[name]` on the table `Installer_Types` will be added. If there are existing duplicate values, this will fail.
  - A unique constraint covering the columns `[name]` on the table `Interests` will be added. If there are existing duplicate values, this will fail.
  - A unique constraint covering the columns `[name]` on the table `States` will be added. If there are existing duplicate values, this will fail.
  - A unique constraint covering the columns `[name]` on the table `User_Types` will be added. If there are existing duplicate values, this will fail.
  - A unique constraint covering the columns `[utility_company_name]` on the table `Utility_Companies` will be added. If there are existing duplicate values, this will fail.

*/
-- CreateIndex
CREATE UNIQUE INDEX `Commodity_name_key` ON `Commodity`(`name`);

-- CreateIndex
CREATE UNIQUE INDEX `Installer_Types_name_key` ON `Installer_Types`(`name`);

-- CreateIndex
CREATE UNIQUE INDEX `Interests_name_key` ON `Interests`(`name`);

-- CreateIndex
CREATE UNIQUE INDEX `States_name_key` ON `States`(`name`);

-- CreateIndex
CREATE UNIQUE INDEX `User_Types_name_key` ON `User_Types`(`name`);

-- CreateIndex
CREATE UNIQUE INDEX `Utility_Companies_utility_company_name_key` ON `Utility_Companies`(`utility_company_name`);
