ufutx.dma/database/migrations/2024_06_24_093836_change_table_feedback.php
2026-03-04 14:42:40 +08:00

31 lines
562 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->longText("desc")->nullable()->comment("描述")->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};