id(); $table->integer('office_id')->comment('办公室id'); $table->string('number')->comment('工位编号'); $table->integer('user_id')->nullable()->comment('用户id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('station'); } };