mirror of
https://github.com/Floriansylvain/PopCorn.git
synced 2026-08-19 11:43:23 +02:00
11 lines
364 B
SQL
11 lines
364 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `Worker` on the `Jeux` table. All the data in the column will be lost.
|
|
- Added the required column `Workers` to the `Jeux` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Jeux` DROP COLUMN `Worker`,
|
|
ADD COLUMN `Workers` VARCHAR(191) NOT NULL;
|