Completed
Pull Request — master (#299)
by Joas
02:31
created

Version2008Date20181011095117   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 31
ccs 0
cts 18
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A changeSchema() 0 22 2
1
<?php
2
declare(strict_types=1);
3
/**
4
 * @copyright Copyright (c) 2018, Joas Schilling <[email protected]>
5
 *
6
 * @author Joas Schilling <[email protected]>
7
 *
8
 * @license GNU AGPL version 3 or any later version
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License as
12
 * published by the Free Software Foundation, either version 3 of the
13
 * License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU Affero General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU Affero General Public License
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 *
23
 */
24
25
namespace OCA\Activity\Migration;
26
27
use Closure;
28
use Doctrine\DBAL\Schema\SchemaException;
29
use Doctrine\DBAL\Types\Type;
30
use OCP\DB\ISchemaWrapper;
31
use OCP\Migration\SimpleMigrationStep;
32
use OCP\Migration\IOutput;
33
34
class Version2008Date20181011095117 extends SimpleMigrationStep {
35
36
	/**
37
	 * @param IOutput $output
38
	 * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
39
	 * @param array $options
40
	 * @return null|ISchemaWrapper
41
	 */
42
	public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
43
		/** @var ISchemaWrapper $schema */
44
		$schema = $schemaClosure();
45
46
		try {
47
			$table = $schema->getTable('activity_mq');
48
		} catch (SchemaException $e) {
0 ignored issues
show
Bug introduced by
The class Doctrine\DBAL\Schema\SchemaException does not exist. Did you forget a USE statement, or did you not list all dependencies?

Scrutinizer analyzes your composer.json/composer.lock file if available to determine the classes, and functions that are defined by your dependencies.

It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.

Loading history...
49
			return null;
50
		}
51
52
		$table->addColumn('object_type', Type::STRING, [
53
			'notnull' => false,
54
			'length' => 255,
55
		]);
56
		$table->addColumn('object_id', Type::BIGINT, [
57
			'notnull' => true,
58
			'length' => 20,
59
			'default' => 0,
60
		]);
61
62
		return $schema;
63
	}
64
}
65