31 lines
798 B
PHP
31 lines
798 B
PHP
<?php
|
||
|
||
use Illuminate\Database\Migrations\Migration;
|
||
use Illuminate\Database\Schema\Blueprint;
|
||
use Illuminate\Support\Facades\Schema;
|
||
|
||
return new class extends Migration
|
||
{
|
||
/**
|
||
* Run the migrations.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function up()
|
||
{
|
||
// 修改枚举列的值
|
||
\Illuminate\Support\Facades\DB::statement("ALTER TABLE ufutx_agencies MODIFY grade ENUM('P', 'C','A') NOT NULL COMMENT '代理等级 P:省级,C:市级 ,A:海外'");
|
||
}
|
||
|
||
/**
|
||
* Reverse the migrations.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function down()
|
||
{
|
||
// 修改枚举列的值
|
||
\Illuminate\Support\Facades\DB::statement("ALTER TABLE ufutx_agencies MODIFY grade ENUM('P', 'C') NOT NULL COMMENT '代理等级 P:省级,C:市级'");
|
||
}
|
||
};
|