engine = 'InnoDB'; $table->string('id'); $table->string('name')->comment('省份名称'); $table->primary('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('provinces'); } }