我正在使用Laravel 5.1并且我有一个名为packages的表,其结构如下:
id int(11)
weight decimal(10,2)
weight_unit enum('Kg.', 'Gm.')
我想将
weight_unit
枚举更改为:
weight_unit enum('Grams','Kgs.','Pounds')
为此,我创建了以下迁移:
public function up()
{
Schema::table('packages', function ($table) {
$table->enum('weight_unit', array('Grams','Kgs.','Pounds'))->nullable()->change();
});
}
但是当我运行迁移时,我收到一个错误:
Unknown database type enum requested, Doctrine\DBAL\Platforms\MySqlPlatform
may not support it.
如何更改此枚举?
使用
DB::statement
方法:
DB::statement("ALTER TABLE packages MODIFY COLUMN weight_unit ENUM('Grams', 'Kgs', 'Pounds')");
当我向修改后的枚举列添加新的枚举值时,这对我有用。
将以下内容添加到
up()
方法中:
DB::statement("ALTER TABLE packages MODIFY weight_unit ENUM('Grams', 'Kgs', 'Pounds', 'new value') NOT NULL");
然后在
down()
方法中,您可以恢复所做的更改:
DB::statement("ALTER TABLE packages MODIFY weight_unit ENUM('Grams', 'Kgs', 'Pounds') NOT NULL");
注意:在删除枚举值之前,需要将其更改为另一个将保留的枚举值。
$table->enum('level', ['easy', 'hard']);
我认为通过添加对本机列修改的支持,这个问题已在 Laravel 10 上得到解决。
https://github.com/laravel/framework/pull/45487
所以从 Laravel 10 开始你可以这样做:
Schema::table('jobs', function (Blueprint $table) {
$table->enum('type', ['contract', 'permanent', 'partial'])->change();
});
我在新的 Laravel 9.55.0 和 10.0.2 应用程序上尝试了相同的迁移:
更新: 如果您在项目调用中安装了“doctrine/dbal”
Schema::useNativeSchemaOperationsIfPossible()
类的引导方法或迁移文件中的 App\Providers\AppServiceProvider
方法,以便能够使用本机架构操作,如上面的 GitHub 拉取请求中提到的那样。
如果您不想丢失数据并使用新值更新它,我想出了这个解决方案:
// Include old and new enum values
DB::statement("ALTER TABLE packages MODIFY COLUMN weight_unit ENUM('Kg.', 'Gm.', 'Grams', 'Kgs', 'Pounds')");
// Replace Kg. with Kgs
Packages::where('weight_unit', 'Kg.')->update(['weight_unit' => 'Kgs']);
// Replace Gm. with Grams
Packages::where('weight_unit', 'Gm.')->update(['weight_unit' => 'Grams']);
// Delete old values
DB::statement("ALTER TABLE packages MODIFY COLUMN weight_unit ENUM('Grams', 'Kgs', 'Pounds')");
这样您就可以用新值替换旧值。
您可以向迁移添加自定义构造函数,并向 Doctrine 解释
enum
应被视为字符串。
public function __construct(\Doctrine\DBAL\Migrations\Version $version)
{
parent::__construct($version);
$this->platform->registerDoctrineTypeMapping('enum', 'string');
}
在 Change() 调用之前添加此内容:
DB::getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');
使用默认值。将其添加到
up()
:
\DB::statement("ALTER TABLE `patient_appointments` CHANGE `status` `status` ENUM('pending','wait','approved', 'consulted') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending';");
我可以通过删除和添加约束来解决这个问题。这确保了我现有的数据也完好无损。
DB::statement("ALTER TABLE purchases DROP CONSTRAINT purchases_ref_check");
$types = ['single', 'monthly', 'biannual', 'amount', 'other'];
$result = join( ', ', array_map(function( $value ){ return sprintf("'%s'::character varying", $value); }, $types) );
DB::statement("ALTER TABLE purchases add CONSTRAINT purchases_ref_check CHECK (ref::text = ANY (ARRAY[$result]::text[]))");
在 postgres 中,我没有找到更优雅的解决方案,但是这个,例如:
public function up()
{
if (Schema::hasColumn('plan_fibras', 'type')) {
Schema::table('plan_fibras', function (Blueprint $table)
{
$table->dropColumn('type');
});
}
if (!Schema::hasColumn('plan_fibras', 'type')) {
Schema::table('plan_fibras', function (Blueprint $table) {
$table->enum('type', ['PF', 'PJ', 'FIBRA X'])->nullable();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
if (Schema::hasColumn('plan_fibras', 'type')) {
Schema::table('plan_fibras', function (Blueprint $table)
{
$table->dropColumn('type');
});
}
}