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

37 lines
919 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::create('feedback', function (Blueprint $table) {
$table->id();
$table->integer('user_id')->comment('用户id');
$table->string('type')->nullable()->comment('反馈类型');
$table->text('images')->nullable()->comment('图片');
$table->string('desc')->nullable()->comment('描述');
$table->char('mobile',11)->nullable()->comment('联系电话');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('feedback');
}
};