web/database/migrations/2024_03_30_000058_create_sa...

36 lines
807 B
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('safebox', function (Blueprint $table) {
$table->unsignedInteger('account_id');
$table->unsignedTinyInteger('size')->default(0);
$table->string('password', 6)->default('');
$table->integer('gold')->default(0);
$table->foreign('account_id')->references('id')->on('account');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('safebox');
}
};