9 lines
282 B
SQL
9 lines
282 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The values [REJECT] on the enum `Orders_status` will be removed. If these variants are still used in the database, this will fail.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Orders` MODIFY `status` ENUM('PENDING', 'REJECTED', 'CANCELED', 'DONE') NOT NULL DEFAULT 'PENDING';
|