<?php

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

class UpdateContractIdImage extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        //
	    Schema::table('contracts', function(Blueprint $table) {
	    	$table->string('id_number_front')->nullable();
	    	$table->string('id_number_back')->nullable();
	    });
    }

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