File "2015_06_10_040042_add_bsb_bank_details.php"

Full Path: /home/isoftco/public_html/hrm/database/migrations/2015_06_10_040042_add_bsb_bank_details.php
File size: 511 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

class AddBsbBankDetails extends Migration {

	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up()
	{
		Schema::table('bank_details', function(Blueprint $table)
		{
			$table->string('bsb');
		});
	}

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

}