increments('id'); $table->tinyInteger('code_type')->comment('二维码类型'); $table->string('code_title')->comment('二维码类型名称'); $table->string('code_img')->comment('二维码图片'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('qr_codes'); } }