public function up()
{
Schema::table('lotto_categories', function (Blueprint $table) {
$table->string('logo')->after('name');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('lotto_categories', function (Blueprint $table) {
$table->dropColumn('logo');
});
}