summaryrefslogtreecommitdiffstats
path: root/core/Migrations/Version16000Date20190212081545.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Migrations/Version16000Date20190212081545.php')
-rw-r--r--core/Migrations/Version16000Date20190212081545.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/core/Migrations/Version16000Date20190212081545.php b/core/Migrations/Version16000Date20190212081545.php
index 71ad253453c..86494db4794 100644
--- a/core/Migrations/Version16000Date20190212081545.php
+++ b/core/Migrations/Version16000Date20190212081545.php
@@ -29,7 +29,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;
@@ -47,52 +47,52 @@ class Version16000Date20190212081545 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->createTable('login_flow_v2');
- $table->addColumn('id', Type::BIGINT, [
+ $table->addColumn('id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
'length' => 20,
'unsigned' => true,
]);
- $table->addColumn('timestamp', Type::BIGINT, [
+ $table->addColumn('timestamp', Types::BIGINT, [
'notnull' => true,
'length' => 20,
'unsigned' => true,
]);
- $table->addColumn('started', Type::SMALLINT, [
+ $table->addColumn('started', Types::SMALLINT, [
'notnull' => true,
'length' => 1,
'unsigned' => true,
'default' => 0,
]);
- $table->addColumn('poll_token', Type::STRING, [
+ $table->addColumn('poll_token', Types::STRING, [
'notnull' => true,
'length' => 255,
]);
- $table->addColumn('login_token', Type::STRING, [
+ $table->addColumn('login_token', Types::STRING, [
'notnull' => true,
'length' => 255,
]);
- $table->addColumn('public_key', Type::TEXT, [
+ $table->addColumn('public_key', Types::TEXT, [
'notnull' => true,
'length' => 32768,
]);
- $table->addColumn('private_key', Type::TEXT, [
+ $table->addColumn('private_key', Types::TEXT, [
'notnull' => true,
'length' => 32768,
]);
- $table->addColumn('client_name', Type::STRING, [
+ $table->addColumn('client_name', Types::STRING, [
'notnull' => true,
'length' => 255,
]);
- $table->addColumn('login_name', Type::STRING, [
+ $table->addColumn('login_name', Types::STRING, [
'notnull' => false,
'length' => 255,
]);
- $table->addColumn('server', Type::STRING, [
+ $table->addColumn('server', Types::STRING, [
'notnull' => false,
'length' => 255,
]);
- $table->addColumn('app_password', Type::STRING, [
+ $table->addColumn('app_password', Types::STRING, [
'notnull' => false,
'length' => 1024,
]);