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->string('abrar_link')->nullable()->default('#'); $table->string('abrar_process')->nullable(); $table->string('abrar_feature')->nullable(); $table->timestamps(); $table->decimal('poster_lat', 12, 10)->nullable(); $table->decimal('poster_long', 12, 10)->nullable(); $table->string('account_id', 50)->nullable(); $table->string('deposit_id', 50)->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('provinces'); } };