9 lines
231 B
MySQL
9 lines
231 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- Made the column `ut_mdp` on table `Utilisateur` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE `Utilisateur` MODIFY `ut_mdp` VARCHAR(191) NOT NULL;
|