bigIncrements('id'); $table->string('name')->comment('交易名称'); $table->string('type', 20)->comment('交易类型'); $table->decimal('money', 7, 2)->default(0.00)->comment('交易金额'); $table->bigInteger('user_id')->default(0)->comment('用户id'); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wallet_logs'); } }