blob: 3a0fb1ab9048d4fa1ffdcf174ee33c1ac402d311 (
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
|
<?php
namespace OCA\DAV\Migration;
use Doctrine\DBAL\Schema\Schema;
use OCP\Migration\SimpleMigrationStep;
use OCP\Migration\IOutput;
class Version1004Date20170919104507 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param \Closure $schemaClosure The `\Closure` returns a `Schema`
* @param array $options
* @return null|Schema
* @since 13.0.0
*/
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
/** @var Schema $schema */
$schema = $schemaClosure();
$table = $schema->getTable('addressbooks');
$column = $table->getColumn('id');
$column->setUnsigned(true);
$table = $schema->getTable('calendarobjects');
$column = $table->getColumn('id');
$column->setUnsigned(true);
$table = $schema->getTable('calendarchanges');
$column = $table->getColumn('id');
$column->setUnsigned(true);
return $schema;
}
}
|