integer('id', true);
$table->string('name', 30);
$table->integer('state_id');
$table->integer('pincode')->nullable();
$table->dateTime('updated_at')->nullable();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('allcities');
}
}