File: /home/mmickelson/spilicensing/database/migrations/2016_03_24_232346_create_vendors_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateVendorsTable extends Migration {
	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up()
	{
		Schema::create('vendors', function(Blueprint $table)
		{
			$table->increments('id');
			$table->string('vendorName');
			$table->string('address');
			$table->string('city');
			$table->string('state');
			$table->string('zip', 10);
			$table->string('country', 100);
			$table->string('email');
			$table->string('phone', 50);
			$table->string('website');
			$table->timestamps();
		});
	}
	/**
	 * Reverse the migrations.
	 *
	 * @return void
	 */
	public function down()
	{
		Schema::drop('vendors');
	}
}