Файл: database/migrations/2018_05_08_095023_create_waves_ranks_table.php
Строк: 31
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateWavesRanksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('waves_ranks', function (Blueprint $table) {
$table->increments('id');
$table->integer('rank');
$table->integer('exp');
$table->integer('reward');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('waves_ranks');
}
}