increments('id'); $table->string('game_type', 255)->nullable(); $table->integer('max_bet')->nullable(); $table->integer('min_bet')->nullable(); $table->string('game_name', 255)->nullable(); $table->increments('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('games'); } }