increments('id'); $table->integer('team_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('code', 255)->nullable(); $table->string('logo', 255)->nullable(); $table->integer('league_id')->nullable(); $table->integer('status')->nullable(); $table->integer('min_bet')->nullable(); $table->integer('max_bet')->nullable(); $table->integer('bet_ratio')->nullable(); $table->dateTime('bet_close_date')->nullable(); $table->dateTime('bet_open_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('teams'); } }