increments('id'); $table->integer('league_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('country', 255)->nullable(); $table->integer('country_code')->nullable(); $table->string('season', 255)->nullable(); $table->dateTime('season_start')->nullable(); $table->dateTime('season_end')->nullable(); $table->text('logo')->nullable(); $table->string('standings', 255)->nullable(); $table->integer('status')->nullable(); $table->integer('to_win_outright')->nullable(); $table->integer('to_win_conference')->nullable(); $table->string('cup_name', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('leagues'); } }