We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e2819 commit 2a153f1Copy full SHA for 2a153f1
1 file changed
apps/cloud_federation_api/lib/Migration/DropFederatedInvitesTable.php
@@ -14,23 +14,22 @@
14
use OCP\Migration\IOutput;
15
use OCP\Migration\IRepairStep;
16
17
+/**
18
+ * Drops the federated_invites table unless it contains data.
19
+ */
20
class DropFederatedInvitesTable implements IRepairStep {
21
22
public function __construct(
23
protected Connection $db,
24
) {
25
}
26
27
+ #[\Override]
28
public function getName(): string {
29
return 'Conditionally drop the federated_invites table';
30
31
- /**
- * Drops the federated_invites table unless it contains data.
- *
- * @param IOutput $output
32
- * @return void
33
- */
34
public function run(IOutput $output): void {
35
$table_name = 'federated_invites';
36
$schema = new SchemaWrapper($this->db);
0 commit comments