for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateUserTokensTable extends Migration
{
/**
* Run the migrations.
* @return void
*/
public function up()
Schema::create('user_tokens', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->string('access_token');
$table->timestamps();
$table->unique('access_token');
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
});
}
* Reverse the migrations.
public function down()
Schema::drop('user_tokens');