13 lines
479 B
SQL
13 lines
479 B
SQL
/*
|
|
Warnings:
|
|
|
|
- A unique constraint covering the columns `[ut_mail]` on the table `Utilisateur` will be added. If there are existing duplicate values, this will fail.
|
|
- Made the column `ut_mail` on table `Utilisateur` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Utilisateur` MODIFY `ut_mail` VARCHAR(191) NOT NULL;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX `Utilisateur_ut_mail_key` ON `Utilisateur`(`ut_mail`);
|