/**
  * Make a migration instance.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTable(config('laravel-auth.permissions.table'));
 }
 /**
  * Make a migration instance.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTable(config('laravel-auth.users.table', 'users'));
 }
 /**
  * Reverse the migrations.
  */
 public function down()
 {
     if ($this->isThrottlable()) {
         parent::down();
     }
 }