summaryrefslogtreecommitdiffstats
path: root/lib/private/DB
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-11-11 17:40:12 +0100
committerGitHub <noreply@github.com>2020-11-11 17:40:12 +0100
commitd36155620c8965381acc4e36a2d7e968c36cbc27 (patch)
treecf5e6e9f37f6590fbfd8b954ca355f0a00b67962 /lib/private/DB
parent9db321cf11637089f9e5ebd67ea6d909fc81d000 (diff)
downloadnextcloud-server-d36155620c8965381acc4e36a2d7e968c36cbc27.tar.gz
nextcloud-server-d36155620c8965381acc4e36a2d7e968c36cbc27.zip
Revert "Installation goes brrrr"
Diffstat (limited to 'lib/private/DB')
-rw-r--r--lib/private/DB/MigrationService.php46
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php
index 9c94cbc61fa..cd0280162d3 100644
--- a/lib/private/DB/MigrationService.php
+++ b/lib/private/DB/MigrationService.php
@@ -124,11 +124,6 @@ class MigrationService {
return false;
}
- if ($this->connection->tableExists('migrations')) {
- $this->migrationTableCreated = true;
- return false;
- }
-
$schema = new SchemaWrapper($this->connection);
/**
@@ -413,11 +408,6 @@ class MigrationService {
* @throws \InvalidArgumentException
*/
public function migrate($to = 'latest', $schemaOnly = false) {
- if ($schemaOnly) {
- $this->migrateSchemaOnly($to);
- return;
- }
-
// read known migrations
$toBeExecuted = $this->getMigrationsToExecute($to);
foreach ($toBeExecuted as $version) {
@@ -426,42 +416,6 @@ class MigrationService {
}
/**
- * Applies all not yet applied versions up to $to
- *
- * @param string $to
- * @throws \InvalidArgumentException
- */
- public function migrateSchemaOnly($to = 'latest') {
- // read known migrations
- $toBeExecuted = $this->getMigrationsToExecute($to);
-
- if (empty($toBeExecuted)) {
- return;
- }
-
- $toSchema = null;
- foreach ($toBeExecuted as $version) {
- $instance = $this->createInstance($version);
-
- $toSchema = $instance->changeSchema($this->output, function () use ($toSchema) {
- return $toSchema ?: new SchemaWrapper($this->connection);
- }, ['tablePrefix' => $this->connection->getPrefix()]) ?: $toSchema;
-
- $this->markAsExecuted($version);
- }
-
- if ($toSchema instanceof SchemaWrapper) {
- $targetSchema = $toSchema->getWrappedSchema();
- if ($this->checkOracle) {
- $beforeSchema = $this->connection->createSchema();
- $this->ensureOracleIdentifierLengthLimit($beforeSchema, $targetSchema, strlen($this->connection->getPrefix()));
- }
- $this->connection->migrateToSchema($targetSchema);
- $toSchema->performDropTableCalls();
- }
- }
-
- /**
* Get the human readable descriptions for the migration steps to run
*
* @param string $to