ufutx.dma/database/migrations/2024_05_14_151021_create_bands_table.php

36 lines
850 B
PHP
Raw Normal View History

2026-03-04 14:42:40 +08:00
<?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('bands', function (Blueprint $table) {
$table->id();
$table->integer('user_id')->unsigned()->comment("用户id");
$table->string('name')->nullable()->comment("名称");
$table->string('mac')->comment("mac地址");
$table->boolean('status')->comment("状态0断开1链接");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('bands');
}
};