id(); $table->integer('logistic_id')->index()->comment('承运商'); $table->integer('to_province_id')->index()->comment('目的省'); $table->integer('to_city_id')->index()->nullable()->comment('目的市'); $table->integer('days_at_working')->nullable()->comment('工作日用日'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('logistic_timings'); } }