/**
  * Get module migrations path
  *
  * @param bool $relative
  *
  * @return string
  */
 public function migrationsPath($relative = false)
 {
     $path = $this->normalizePath($this->config->migrationsPath());
     return $relative ? $path : $this->directory() . DIRECTORY_SEPARATOR . $path;
 }