Creating database tables
Creating database records
Database build completed!
[INFO]: --- Building schema "admin" ---Line 102 in G:\inetpub\wwwroot\CCM\ccm.co.nz\vendor\symfony\filesystem\Filesystem.php
93 */ 94 public function mkdir(string|iterable $dirs, int $mode = 0777) 95 { 96 foreach ($this->toIterable($dirs) as $dir) { 97 if (is_dir($dir)) { 98 continue; 99 } 100 101 if (!self::box('mkdir', $dir, $mode, true) && !is_dir($dir)) { 102 throw new IOException(sprintf('Failed to create "%s": ', $dir).self::$lastError, 0, null, $dir); 103 } 104 } 105 } 106 107 /** 108 * Checks the existence of files or directories.