aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorStephan Orbaugh <62374139+sorbaugh@users.noreply.github.com>2024-08-06 13:27:04 +0200
committerGitHub <noreply@github.com>2024-08-06 13:27:04 +0200
commit5c54a3caa752d2faa8363bf1c37658705864f729 (patch)
tree751b9ee771375a6ca8388d65c611327fac947b40 /apps/files_trashbin
parent7a7f259f3c3c3d9eb7e58d1e0f1ee93090582c80 (diff)
parent726b7a699572fc7329a0db22ec8279e0cdd901fc (diff)
downloadnextcloud-server-5c54a3caa752d2faa8363bf1c37658705864f729.tar.gz
nextcloud-server-5c54a3caa752d2faa8363bf1c37658705864f729.zip
Merge pull request #46974 from nextcloud/fix/noid/add-metadata-to-migrationsteps
feat(migrations): add metadata to existing migrations
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/Migration/Version1020Date20240403003535.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_trashbin/lib/Migration/Version1020Date20240403003535.php b/apps/files_trashbin/lib/Migration/Version1020Date20240403003535.php
index a977f5be43a..3e85edf40b6 100644
--- a/apps/files_trashbin/lib/Migration/Version1020Date20240403003535.php
+++ b/apps/files_trashbin/lib/Migration/Version1020Date20240403003535.php
@@ -12,9 +12,12 @@ namespace OCA\Files_Trashbin\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\DB\Types;
+use OCP\Migration\Attributes\AddColumn;
+use OCP\Migration\Attributes\ColumnType;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
+#[AddColumn(table: 'files_trash', name: 'deleted_by', type: ColumnType::STRING)]
class Version1020Date20240403003535 extends SimpleMigrationStep {
/**