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

36 lines
809 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('surveys', function (Blueprint $table) {
$table->id();
$table->string('title')->comment("标题");
$table->text('content')->comment("内容");
$table->string('note')->nullable()->comment("说明");
$table->timestamps();
$table->timestamp('deleted_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('surveys');
}
};