aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-09-19 12:49:42 +0200
committerJoas Schilling <coding@schilljs.com>2017-09-19 12:49:42 +0200
commitd5b5fc7fcaa8edc6e8cfbd2318e529845d9a87cd (patch)
tree4a78d162e32b3f2417e51bd10cab1d49cc73ebca /apps/dav
parent8768faacaa0ff842c5b77820b64782fcaf1fa830 (diff)
downloadnextcloud-server-d5b5fc7fcaa8edc6e8cfbd2318e529845d9a87cd.tar.gz
nextcloud-server-d5b5fc7fcaa8edc6e8cfbd2318e529845d9a87cd.zip
Fix unsigned state
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/Migration/Version1004Date20170919104507.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/dav/lib/Migration/Version1004Date20170919104507.php b/apps/dav/lib/Migration/Version1004Date20170919104507.php
new file mode 100644
index 00000000000..3a0fb1ab904
--- /dev/null
+++ b/apps/dav/lib/Migration/Version1004Date20170919104507.php
@@ -0,0 +1,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;
+ }
+
+}