Файл: database/migrations/2018_03_07_111110_add_arena_battle_column.php
Строк: 30
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class AddArenaBattleColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('arena_battles', function (Blueprint $table) {
$table->integer('card_level')->default(1);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('arena_battles', function (Blueprint $table) {
//
});
}
}