bigIncrements('id'); $table->timestamps(); $table->string('name',50)->unique()->comment('名称'); $table->string('mobile',50)->unique()->comment('手机'); $table->text('remark')->nullable()->comment('备注'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('carriers'); } }