175 lines
4.5 KiB
PHP
175 lines
4.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace OCA\Mail\Migration;
|
|
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\DB\Types;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
class Version0100Date20180825194217 extends SimpleMigrationStep {
|
|
/**
|
|
* @param IOutput $output
|
|
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
|
* @param array $options
|
|
* @return null|ISchemaWrapper
|
|
*/
|
|
#[\Override]
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
|
|
/** @var ISchemaWrapper $schema */
|
|
$schema = $schemaClosure();
|
|
|
|
/*
|
|
* Schema generated from database.xml but required changes for
|
|
* https://github.com/f7cloud/mail/issues/784 already applied.
|
|
*/
|
|
|
|
if (!$schema->hasTable('mail_accounts')) {
|
|
$table = $schema->createTable('mail_accounts');
|
|
$table->addColumn('id', Types::INTEGER, [
|
|
'autoincrement' => true,
|
|
'notnull' => true,
|
|
]);
|
|
$table->addColumn('user_id', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 64,
|
|
]);
|
|
$table->addColumn('name', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 64,
|
|
]);
|
|
$table->addColumn('email', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 255,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('inbound_host', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 64,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('inbound_port', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 6,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('inbound_ssl_mode', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 10,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('inbound_user', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 64,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('inbound_password', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 2048,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('outbound_host', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 64,
|
|
]);
|
|
$table->addColumn('outbound_port', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 6,
|
|
]);
|
|
$table->addColumn('outbound_ssl_mode', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 10,
|
|
]);
|
|
$table->addColumn('outbound_user', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 64,
|
|
]);
|
|
$table->addColumn('outbound_password', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 2048,
|
|
]);
|
|
$table->setPrimaryKey(['id']);
|
|
$table->addIndex(['user_id'], 'mail_userid_index');
|
|
}
|
|
|
|
if (!$schema->hasTable('mail_coll_addresses')) {
|
|
$table = $schema->createTable('mail_coll_addresses');
|
|
$table->addColumn('id', Types::INTEGER, [
|
|
'autoincrement' => true,
|
|
'notnull' => true,
|
|
'length' => 4,
|
|
]);
|
|
$table->addColumn('user_id', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 64,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('email', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 255,
|
|
]);
|
|
$table->addColumn('display_name', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 255,
|
|
]);
|
|
$table->setPrimaryKey(['id']);
|
|
$table->addIndex(['user_id'], 'mail_coll_addr_userid_index');
|
|
$table->addIndex(['email'], 'mail_coll_addr_email_index');
|
|
}
|
|
|
|
if (!$schema->hasTable('mail_aliases')) {
|
|
$table = $schema->createTable('mail_aliases');
|
|
$table->addColumn('id', Types::INTEGER, [
|
|
'autoincrement' => true,
|
|
'notnull' => true,
|
|
]);
|
|
$table->addColumn('account_id', Types::INTEGER, [
|
|
'notnull' => true,
|
|
'default' => 0,
|
|
]);
|
|
$table->addColumn('name', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 64,
|
|
]);
|
|
$table->addColumn('alias', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 255,
|
|
]);
|
|
$table->setPrimaryKey(['id']);
|
|
}
|
|
|
|
if (!$schema->hasTable('mail_attachments')) {
|
|
$table = $schema->createTable('mail_attachments');
|
|
$table->addColumn('id', Types::INTEGER, [
|
|
'autoincrement' => true,
|
|
'notnull' => true,
|
|
]);
|
|
$table->addColumn('user_id', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 64,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('file_name', Types::STRING, [
|
|
'notnull' => true,
|
|
'length' => 255,
|
|
'default' => '',
|
|
]);
|
|
$table->addColumn('created_at', Types::INTEGER, [
|
|
'notnull' => true,
|
|
'default' => 0,
|
|
]);
|
|
$table->setPrimaryKey(['id']);
|
|
$table->addIndex(['user_id'], 'mail_attach_userid_index');
|
|
}
|
|
|
|
return $schema;
|
|
}
|
|
}
|