Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Version030201Date20201116110353.php « Migration « lib - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab7ffa5fa7d0165a0bc951d1f184e7b449b12e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php

declare(strict_types=1);

namespace OCA\Text\Migration;

use Closure;
use Doctrine\DBAL\Types\Type;
use OCP\DB\ISchemaWrapper;
use OCP\IConfig;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

class Version030201Date20201116110353 extends SimpleMigrationStep {

	/** @var bool */
	private $isOracle;

	public function __construct(IConfig $config) {
		$this->isOracle = $config->getSystemValue('dbtype', 'sqlite') === 'oci';
	}

	public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
		/** @var ISchemaWrapper $schema */
		$schema = $schemaClosure();

		$this->ensureColumnIsNullable($schema, 'text_steps', 'version');

		if ($this->isOracle) {
			// Drop table if we are on oracle and recreate it with the next migration Version030201Date20201116123153
			if ($schema->hasTable('text_documents')) {
				$schema->dropTable('text_documents');
			}
		} else {
			$this->ensureColumnIsNullable($schema, 'text_documents', 'current_version');
			$this->ensureColumnIsNullable($schema, 'text_documents', 'last_saved_version');
			$table = $schema->getTable('text_documents');
			$column = $table->getColumn('id');
			if ($column->getAutoincrement()) {
				$table->changeColumn('id', [
					'autoincrement' => false,
				]);
			}
		}

		return $schema;
	}

	protected function ensureColumnIsNullable(ISchemaWrapper $schema, string $tableName, string $columnName): bool {
		$table = $schema->getTable($tableName);
		$column = $table->getColumn($columnName);

		if ($column->getNotnull()) {
			$column->setNotnull(false);
			return true;
		}

		return false;
	}
}