<?php

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

class CreateAgentsTable extends Migration {
	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up() {
		Schema::create( 'agent_districts', function ( Blueprint $table ) {
			$table->increments( 'id' );
			$table->integer( 'user_id' )->nullable();
			$table->integer( 'district_id' )->nullable();
			$table->timestamps();
		} );

		Schema::table( 'users', function ( Blueprint $table ) {
			$table->boolean( 'is_agent' )->default( false );
		} );
	}

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