id(); $table->tinyInteger('type')->default(0)->comment('类型 0:h5 1:app'); $table->string('version')->comment('版本号'); $table->string('remark')->nullable()->comment('备注'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('version'); } };