123456789101112131415161718192021222324252627282930313233 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateGameTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('games', function(Blueprint $table) {
- $table->increments('id');
- $table->timestamps();
- $table->integer('user_id')->unsigned()->nullable();
- $table->foreign('user_id')->references('id')->on('users');
- $table->integer('game_type');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('games');
- }
- }
|