1
0
Fork 0
mirror of synced 2024-08-04 04:52:03 +12:00

Merge pull request #5243 from appwrite/fix-migration

Update migration V18.php
This commit is contained in:
Jake Barnby 2023-03-21 19:54:01 +13:00 committed by GitHub
commit a3ddfd98d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -50,6 +50,7 @@ abstract class Migration
'1.1.2' => 'V16', '1.1.2' => 'V16',
'1.2.0' => 'V17', '1.2.0' => 'V17',
'1.2.1' => 'V17', '1.2.1' => 'V17',
'1.3.0' => 'V18',
]; ];
/** /**

View file

@ -80,13 +80,7 @@ class V18 extends Migration
/** /**
* Bump version number. * Bump version number.
*/ */
$document->setAttribute('version', '1.2.0'); $document->setAttribute('version', '1.3.0');
break;
case 'projects':
/**
* Bump version number.
*/
$document->setAttribute('passwordHistory', []);
/** /**
* Set default passwordHistory * Set default passwordHistory
@ -95,7 +89,12 @@ class V18 extends Migration
'passwordHistory' => 0, 'passwordHistory' => 0,
'passwordDictionary' => false, 'passwordDictionary' => false,
])); ]));
break;
case 'users':
/**
* Default Password history
*/
$document->setAttribute('passwordHistory', []);
break; break;
} }