File "2015_01_15_110255_create_attendance_table.php"

Full Path: /home/isoftco/public_html/hrm/database/migrations/2015_01_15_110255_create_attendance_table.php
File size: 1.69 KB
MIME-type: text/x-php
Charset: utf-8

<?php

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

class CreateAttendanceTable extends Migration {

	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up()
	{
		Schema::create('attendance', function(Blueprint $table)
		{
			$table->increments('id');

			$table->unsignedInteger("employee_id");
			
			$table->foreign('employee_id')
      			  ->references('id')->on('employees')
      			  ->onUpdate('cascade')
      			  ->onDelete('cascade');

      		$table->date('date');
            $table->enum('status',array('absent','present'));
            $table->string('leaveType',100)->nullable();
            $table->string('halfDayType',100)->nullable();

      		$table->text('reason');
            $table->enum('application_status',array('approved','rejected','pending'))->nullable();
            $table->date('applied_on')->nullable();
			$table->string('updated_by',100)->nullable();

            $table->index('leaveType');
            $table->foreign('leaveType')
                ->references('leaveType')->on('leavetypes')
                ->onUpdate('cascade')
                ->onDelete('cascade');

			$table->index('updated_by');
			$table->foreign('updated_by')
			      ->references('email')->on('admins')
			      ->onUpdate('cascade')
			      ->onDelete('cascade');

			$table->index('halfDayType');
			$table->foreign('halfDayType')
				->references('leaveType')->on('leavetypes')
				->onUpdate('cascade')
				->onDelete('cascade');

            $table->unique(['employee_id','date']);


			$table->timestamps();
		});
	}

	/**
	 * Reverse the migrations.
	 *
	 * @return void
	 */
	public function down()
	{
		Schema::drop('attendance');
	}

}