43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('guild', function (Blueprint $table) {
|
|
$table->unsignedInteger('id', true)->primary();
|
|
$table->string('name', 12);
|
|
$table->smallInteger('sp')->default(1000);
|
|
$table->unsignedInteger('master')->default(0);
|
|
$table->tinyInteger('level');
|
|
$table->integer('exp');
|
|
$table->tinyInteger('skill_point')->default(0);
|
|
$table->binary('skill');
|
|
$table->integer('win')->default(0);
|
|
$table->integer('draw')->default(0);
|
|
$table->integer('loss')->default(0);
|
|
$table->integer('ladder_point')->default(0);
|
|
$table->integer('gold')->default(0);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('guild');
|
|
}
|
|
};
|