1
0
Fork 0
mirror of synced 2024-07-05 14:40:42 +12:00

chore: remove DB creates

This commit is contained in:
Christy Jacob 2023-10-02 21:32:05 +00:00
parent 1492c8bfb1
commit b456c9df2c
2 changed files with 2 additions and 2 deletions

View file

@ -170,7 +170,7 @@ App::post('/v1/projects')
$dbForProject = new Database($pools->get($database)->pop()->getResource(), $cache);
$dbForProject->setNamespace("_{$project->getInternalId()}");
$dbForProject->create();
// $dbForProject->create();
$audit = new Audit($dbForProject);
$audit->setup();

View file

@ -89,7 +89,7 @@ $http->on('start', function (Server $http) use ($payloadSize, $register) {
try {
Console::success('[Setup] - Creating database: appwrite...');
$dbForConsole->create();
// $dbForConsole->create();
} catch (\Exception $e) {
Console::success('[Setup] - Skip: metadata table already exists');
}