increments('id'); $table->integer('contract_id')->index('contract_id')->comment('合约ID'); $table->integer('m_id')->index('m_id')->comment('会员ID'); $table->integer('broadcast_id')->comment('广播ID'); $table->integer('is_transition')->comment('是否转换为lk'); $table->double('usdt_num',16,6)->default(0)->comment('清分USDT'); $table->double('lk_num',16,6)->default(0)->comment('清分lk'); $table->double('lk_money',16,6)->default(0)->comment('lk价格'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contract_distributions'); } }