public function up()
 {
     Schema::table('rainlab_location_countries', function (Blueprint $table) {
         $table->boolean('is_pinned')->default(false);
     });
     Country::whereIn('code', ['AU', 'CA', 'GB', 'US'])->update(['is_pinned' => 1]);
 }