/**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     Schema::create('manifests', function (Blueprint $table) {
         $table->increments('id');
         $table->integer('version');
         $table->timestamps();
     });
     \App\Manifest::create(['version' => 0]);
 }