소스 검색

add chmod 0666 on createDatabase platform Sqlite method

phpdevcommunity 7 달 전
부모
커밋
d88cbf7547
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Platform/SqlitePlatform.php

+ 1 - 0
src/Platform/SqlitePlatform.php

@@ -130,6 +130,7 @@ class SqlitePlatform extends AbstractPlatform
         }
 
         touch($database);
+        chmod($database, 0666);
     }
 
     public function createDatabaseIfNotExists(): void