36 lines
850 B
PHP
36 lines
850 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('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');
|
|||
|
|
}
|
|||
|
|
};
|