summaryrefslogtreecommitdiffstats
path: root/core/Migrations/Version16000Date20190207141427.php
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2020-06-30 22:12:06 +0200
committerDaniel Kesselberg <mail@danielkesselberg.de>2020-06-30 23:46:22 +0200
commit87dd760a89891d15f75175e5caa43a3983a28d38 (patch)
treeb9365127a8f6856044739f32329d88e14684ee8a /core/Migrations/Version16000Date20190207141427.php
parent43216f0ac9e3841747019b8c2def0c58e71b8cca (diff)
downloadnextcloud-server-87dd760a89891d15f75175e5caa43a3983a28d38.tar.gz
nextcloud-server-87dd760a89891d15f75175e5caa43a3983a28d38.zip
Replace TYPE with TYPES
As TYPE::* is deprecated. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/Migrations/Version16000Date20190207141427.php')
-rw-r--r--core/Migrations/Version16000Date20190207141427.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/Migrations/Version16000Date20190207141427.php b/core/Migrations/Version16000Date20190207141427.php
index 1b5777a9212..52511a8e321 100644
--- a/core/Migrations/Version16000Date20190207141427.php
+++ b/core/Migrations/Version16000Date20190207141427.php
@@ -28,7 +28,7 @@ declare(strict_types=1);
namespace OC\Core\Migrations;
use Closure;
-use Doctrine\DBAL\Types\Type;
+use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
@@ -49,11 +49,11 @@ class Version16000Date20190207141427 extends SimpleMigrationStep {
if (!$schema->hasTable('collres_collections')) {
$table = $schema->createTable('collres_collections');
- $table->addColumn('id', Type::BIGINT, [
+ $table->addColumn('id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
]);
- $table->addColumn('name', Type::STRING, [
+ $table->addColumn('name', Types::STRING, [
'notnull' => true,
'length' => 64,
]);
@@ -64,14 +64,14 @@ class Version16000Date20190207141427 extends SimpleMigrationStep {
if (!$schema->hasTable('collres_resources')) {
$table = $schema->createTable('collres_resources');
- $table->addColumn('collection_id', Type::BIGINT, [
+ $table->addColumn('collection_id', Types::BIGINT, [
'notnull' => true,
]);
- $table->addColumn('resource_type', Type::STRING, [
+ $table->addColumn('resource_type', Types::STRING, [
'notnull' => true,
'length' => 64,
]);
- $table->addColumn('resource_id', Type::STRING, [
+ $table->addColumn('resource_id', Types::STRING, [
'notnull' => true,
'length' => 64,
]);
@@ -82,25 +82,25 @@ class Version16000Date20190207141427 extends SimpleMigrationStep {
if (!$schema->hasTable('collres_accesscache')) {
$table = $schema->createTable('collres_accesscache');
- $table->addColumn('user_id', Type::STRING, [
+ $table->addColumn('user_id', Types::STRING, [
'notnull' => true,
'length' => 64,
]);
- $table->addColumn('collection_id', Type::BIGINT, [
+ $table->addColumn('collection_id', Types::BIGINT, [
'notnull' => false,
'default' => 0,
]);
- $table->addColumn('resource_type', Type::STRING, [
+ $table->addColumn('resource_type', Types::STRING, [
'notnull' => false,
'length' => 64,
'default' => '',
]);
- $table->addColumn('resource_id', Type::STRING, [
+ $table->addColumn('resource_id', Types::STRING, [
'notnull' => false,
'length' => 64,
'default' => '',
]);
- $table->addColumn('access', Type::SMALLINT, [
+ $table->addColumn('access', Types::SMALLINT, [
'notnull' => true,
'default' => 0,
]);