Skip to content

Commit 6ce20f1

Browse files
authored
Remove handling of foreign key constraints (#11)
SingleStore does not support foreign keys
1 parent bd43055 commit 6ce20f1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Schema/Builder.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,10 @@ public function dropAllTables()
4747
return;
4848
}
4949

50-
$this->disableForeignKeyConstraints();
51-
5250
foreach ($tables as $table) {
5351
$this->connection->statement(
5452
$this->grammar->compileDropAllTables([$table])
5553
);
5654
}
57-
58-
$this->enableForeignKeyConstraints();
5955
}
6056
}

0 commit comments

Comments
 (0)