<?php

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

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

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