View file hrm-saas-2.5.7/script/database/migrations/2015_08_27_124551_add_superadmintype_table.php

File size: 541B
<?php

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

class AddSuperadmintypeTable extends Migration {

	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up()
	{
		Schema::table('admins',function(Blueprint $table){
			$table->enum('type',['admin','superadmin'])->default('admin');
		});
	}

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

}