tinyIncrements('id'); $table->string('name_fa'); $table->string('name_en')->nullable(); $table->unsignedTinyInteger('feature_id')->nullable(); $table->decimal('center_lat', 12, 10)->nullable(); $table->decimal('center_long', 12, 10)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('provinces'); } }