mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
Merge pull request #4038 from appwrite/fix-3949-migrate-audit-time
Fix migration for audit
This commit is contained in:
commit
1b490233b6
2 changed files with 5 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
# Version 1.0.2
|
||||
## Bugs
|
||||
- Fixed migration for audit by migrating the `time` attribute [4038](https://github.com/appwrite/appwrite/pull/4038)
|
||||
|
||||
# Version 1.0.1
|
||||
## Bugs
|
||||
- Fixed migration for abuse by migrating the `time` attribute [3839](https://github.com/appwrite/appwrite/pull/3839)
|
||||
|
|
|
|||
|
|
@ -504,6 +504,7 @@ class V15 extends Migration
|
|||
$this->createPermissionsColumn($id);
|
||||
$this->migrateDateTimeAttribute($id, '_createdAt');
|
||||
$this->migrateDateTimeAttribute($id, '_updatedAt');
|
||||
$this->migrateDateTimeAttribute($id, 'time');
|
||||
break;
|
||||
|
||||
case 'buckets':
|
||||
|
|
|
|||
Loading…
Reference in a new issue