File "2016_02_22_070558_Add_is_late_col_attendance.php"

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

<?php

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

class AddIsLateColAttendance extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('attendance', function (Blueprint $table) {
            $table->boolean('is_late')->default(false);
        });
    }

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