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