File "2016_04_15_070953_license_expired_column.php"

Full Path: /home/isoftco/public_html/hrm/database/migrations/2016_04_15_070953_license_expired_column.php
File size: 517 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

class LicenseExpiredColumn extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table("companies", function(Blueprint $table) {
            $table->boolean("license_expired")->default(false);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        //
    }
}