string('date', 10)->default('0000-00-00')->index('date_idx'); $table->string('time', 8)->default('00:00:00'); $table->unsignedInteger('pid'); $table->integer('what')->index('what_idx'); $table->set('how', ['BUY', 'SELL', 'SHOP_SELL', 'SHOP_BUY', 'EXCHANGE_TAKE', 'EXCHANGE_GIVE', 'QUEST'])->nullable()->index('how_idx'); $table->string('hint', 50)->nullable(); $table->foreign('pid')->references('id')->on('player'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('goldlog'); } };