increments('id'); $table->integer('code')->comment('编码'); $table->tinyInteger('status')->default(0)->index('status')->comment('状态'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('invite_codes'); } }