id(); $table->string('office_name')->comment('办公室名'); $table->unsignedBigInteger('status')->comment('办公室状态0:正常,1:隐藏')->default(0); $table->text('images')->nullable()->comment('缩略图'); $table->text('detail_images')->nullable()->comment('切割图'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('office'); } };