Файл: database/migrations/2018_02_08_173745_create_battle_logs_table.php
Строк: 26
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateBattleLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('battle_logs', function (Blueprint $table) {
$table->increments('id');
$table->integer('battle');
$table->string('type')->default('tutorial');
$table->text('message');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('battle_logs');
}
}