increments('id'); $table->string('grade_name')->default('')->comment('等级名称'); $table->double('grade_money',16,6)->default(0)->comment('推荐收益比列'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('member_grades'); } }