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'); } };