<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class BotleaguesapiCreateGames extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('games', function(Blueprint $table) { $table->increments('id')->unsigned(); $table->string('title')->unique(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('games'); } }