From d5b5fc7fcaa8edc6e8cfbd2318e529845d9a87cd Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 19 Sep 2017 12:49:42 +0200 Subject: Fix unsigned state Signed-off-by: Joas Schilling --- .../Migration/Version1004Date20170919104507.php | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 apps/dav/lib/Migration/Version1004Date20170919104507.php (limited to 'apps/dav/lib/Migration') 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; + } + +} -- cgit v1.2.3