9 lines
292 B
SQL
9 lines
292 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to alter the column `common_name` on the `x_goods` table. The data in that column could be lost. The data in that column will be cast from `Double` to `VarChar(191)`.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `x_goods` MODIFY `common_name` VARCHAR(191) NULL DEFAULT '';
|