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