increments('id'); $table->string('title')->default('')->comment('投资名称'); $table->double('invest_money',16,6)->default(0)->comment('投入金额'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('invests'); } }