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 @@ +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; + } + +}