35 lines
846 B
PHP
35 lines
846 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()
|
|
{
|
|
Schema::table('feedback', function (Blueprint $table) {
|
|
$table->tinyInteger("status")->default(0)->comment("状态 0:未处理 1:进行中 2:已完成")->after("source");
|
|
$table->string("remark")->nullable()->comment("备注")->after("status");
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('feedback', function (Blueprint $table) {
|
|
$table->dropColumn("status");
|
|
$table->dropColumn("remark");
|
|
});
|
|
}
|
|
};
|