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

36 lines
788 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('groups', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->integer('order_id')->unsigned()->comment("订单id")->unique();
$table->string('avatar')->nullable();
$table->text('intro')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('groups');
}
};