id(); $table->string('name')->comment('等级名称'); $table->unsignedBigInteger('growth_value')->default(0)->comment('等级成长值'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vips'); } }