increments('id'); $table->string("name",'50')->comment("学校名称"); $table->string("address",'50')->comment("学校地址"); $table->string("nickname",'50')->comment("学校别名"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('schools'); } }