diff --git a/lib/Migration/Version040100Date20240611165300.php b/lib/Migration/Version040100Date20240611165300.php index a18c34949f8..6595cf48a03 100644 --- a/lib/Migration/Version040100Date20240611165300.php +++ b/lib/Migration/Version040100Date20240611165300.php @@ -12,9 +12,12 @@ 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: 'text_steps', name: 'timestamp', type: ColumnType::BIGINT, description: 'Tracking the timestamp of a document editing step')] class Version040100Date20240611165300 extends SimpleMigrationStep { public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */