id(); $table->integer('partner_id')->unsigned(); $table->enum('grade', ['P','C'])->comment("代理等级 P:省级,C:市级"); $table->string('pro_id', 6)->comment("省codeid"); $table->string('city_id', 6)->comment("市codeid")->nullable(); $table->string('province', 50)->nullable(); $table->string('city', 50)->nullable(); $table->timestamps(); $table->unique(['partner_id','pro_id', 'city_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('agencies'); } };