* * @author Double Bastion LLC * * @license GNU AGPL version 3 or any later version * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this program. If not, see . * */ declare(strict_types=1); namespace OCA\SMSRelentless\Migration; use Closure; use OCP\DB\Types; use OCP\DB\ISchemaWrapper; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; class Version114Date20221202011625 extends SimpleMigrationStep { /** * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('sms_relent_settings')) { $table = $schema->createTable('sms_relent_settings'); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 11, 'unsigned' => true, ]); $table->addColumn('user_id', Types::STRING, [ 'notnull' => true, 'length' => 128, ]); $table->addColumn('telapi_key', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('tel_pub_key', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('telapi_url_rec', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('telapi_url', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('messaging_profile_id', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('nexapi_key', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('nexapi_secret', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('nexapi_url_rec', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('nexapi_url', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('twilapi_key', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('twilapi_secret', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('twilapi_url_rec', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('twilapi_url', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('flowapi_key', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('flowapi_secret', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('flowapi_url_rec', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('flowapi_url', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('tel_sender_name', Types::STRING, [ 'notnull' => false, 'length' => 48, 'default' => '', ]); $table->addColumn('nex_sender_name', Types::STRING, [ 'notnull' => false, 'length' => 48, 'default' => '', ]); $table->addColumn('twil_sender_name', Types::STRING, [ 'notnull' => false, 'length' => 48, 'default' => '', ]); $table->addColumn('flow_sender_name', Types::STRING, [ 'notnull' => false, 'length' => 48, 'default' => '', ]); $table->addColumn('messagesperpage', Types::INTEGER, [ 'notnull' => false, 'length' => 11, 'unsigned' => true, ]); $table->addColumn('get_notify', Types::SMALLINT, [ 'notnull' => false, 'length' => 1, ]); $table->addColumn('notification_email', Types::STRING, [ 'notnull' => false, 'length' => 512, 'default' => '', ]); $table->addColumn('getsmsinemail', Types::SMALLINT, [ 'notnull' => false, 'length' => 1, ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['id']); } if (!$schema->hasTable('sms_relent_received')) { $table = $schema->createTable('sms_relent_received'); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 11, 'unsigned' => true, ]); $table->addColumn('user_id', Types::STRING, [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('message_id', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('date', Types::DATETIME, [ 'notnull' => true, ]); $table->addColumn('from', Types::STRING, [ 'notnull' => true, 'length' => 128, ]); $table->addColumn('to', Types::STRING, [ 'notnull' => true, 'length' => 128, ]); $table->addColumn('message', Types::TEXT, [ 'notnull' => false, 'default' => '', ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['id']); } if (!$schema->hasTable('sms_relent_sent')) { $table = $schema->createTable('sms_relent_sent'); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 11, 'unsigned' => true, ]); $table->addColumn('user_id', Types::STRING, [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('message_id', Types::STRING, [ 'notnull' => true, 'length' => 512, ]); $table->addColumn('date', Types::DATETIME, [ 'notnull' => true, ]); $table->addColumn('from', Types::STRING, [ 'notnull' => true, 'length' => 128, ]); $table->addColumn('to', Types::STRING, [ 'notnull' => true, 'length' => 128, ]); $table->addColumn('network ', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addColumn('price', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addColumn('status', Types::STRING, [ 'notnull' => false, 'length' => 512, 'default' => '', ]); $table->addColumn('deliveryreceipt', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addColumn('message', Types::TEXT, [ 'notnull' => false, 'default' => '', ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['id']); } return $schema; } }