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'); } };