1
0
Fork 0
mirror of synced 2024-07-04 22:20:45 +12:00

style: add more comments to migration

This commit is contained in:
Torsten Dittmann 2022-06-23 10:50:53 +02:00
parent d26baf1f57
commit 8e3ed52924

View file

@ -32,6 +32,12 @@ class V14 extends Migration
$this->forEachDocument([$this, 'fixDocument']); $this->forEachDocument([$this, 'fixDocument']);
} }
/**
* Creates the default Database for existing Projects.
*
* @return void
* @throws \Throwable
*/
public function createDatabaseLayer(): void public function createDatabaseLayer(): void
{ {
if (!$this->projectDB->exists('databases')) { if (!$this->projectDB->exists('databases')) {
@ -53,6 +59,11 @@ class V14 extends Migration
} }
} }
/**
* Migrates all Database Collections.
* @return void
* @throws \Exception
*/
protected function migrateCustomCollections(): void protected function migrateCustomCollections(): void
{ {
try { try {
@ -81,6 +92,9 @@ class V14 extends Migration
} }
try { try {
/**
* Add Database Internal ID for Collections.
*/
$this->createAttributeFromCollection($this->projectDB, 'database_1', 'databaseInternalId', 'collections'); $this->createAttributeFromCollection($this->projectDB, 'database_1', 'databaseInternalId', 'collections');
} catch (\Throwable $th) { } catch (\Throwable $th) {
Console::warning($th->getMessage()); Console::warning($th->getMessage());
@ -117,11 +131,11 @@ class V14 extends Migration
* Update metadata table. * Update metadata table.
*/ */
$this->pdo->prepare("UPDATE `{$this->projectDB->getDefaultDatabase()}`.`_{$internalId}__metadata` $this->pdo->prepare("UPDATE `{$this->projectDB->getDefaultDatabase()}`.`_{$internalId}__metadata`
SET SET
_uid = 'database_1_collection_{$internalId}', _uid = 'database_1_collection_{$internalId}',
name = 'database_1_collection_{$internalId}' name = 'database_1_collection_{$internalId}'
WHERE _uid = 'collection_{$internalId}'; WHERE _uid = 'collection_{$internalId}';
")->execute(); ")->execute();
$collection->setAttribute('databaseInternalId', '1'); $collection->setAttribute('databaseInternalId', '1');
$this->projectDB->updateDocument('database_1', $collection->getId(), $collection); $this->projectDB->updateDocument('database_1', $collection->getId(), $collection);
@ -604,7 +618,7 @@ class V14 extends Migration
} }
/** /**
* Creates new metadata taht was introduced foir a collection and enforces the Internal ID. * Creates new metadata that was introduced for a collection and enforces the Internal ID.
* *
* @param string $id * @param string $id
* @return void * @return void