<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddColumnMstStoreTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('mst_stores', function (Blueprint $table){
            $table->boolean('homes_org_checked')->nullable();
            $table->string('homes_org_name')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('mst_stores', function (Blueprint $table){
            $table->dropColumn('homes_org_checked');
            $table->dropColumn('homes_org_name');
        });
    }
}
