/**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::table('packages', function (Blueprint $table) {
         Schema::removeColumn('url');
     });
 }
 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::table('orders', function (Blueprint $table) {
         Schema::removeColumn('_token');
     });
 }