2022-08-13 01:58:37 +00:00
|
|
|
<?php
|
|
|
|
|
2022-08-18 18:27:25 +00:00
|
|
|
declare(strict_types=1);
|
2022-08-13 01:58:37 +00:00
|
|
|
|
2022-08-18 18:27:25 +00:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2022 Varun Patil <radialapps@gmail.com>
|
|
|
|
* @author Varun Patil <radialapps@gmail.com>
|
|
|
|
* @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 as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2022-08-13 01:58:37 +00:00
|
|
|
|
2022-08-18 18:27:25 +00:00
|
|
|
namespace OCA\Memories\Migration;
|
|
|
|
|
|
|
|
use OCP\DB\ISchemaWrapper;
|
2022-10-19 17:10:36 +00:00
|
|
|
use OCP\DB\Types;
|
2022-08-18 18:27:25 +00:00
|
|
|
use OCP\Migration\IOutput;
|
2022-10-19 17:10:36 +00:00
|
|
|
use OCP\Migration\SimpleMigrationStep;
|
2022-08-18 18:27:25 +00:00
|
|
|
|
2022-10-19 17:10:36 +00:00
|
|
|
class Version000000Date20220812163631 extends SimpleMigrationStep
|
|
|
|
{
|
2022-08-13 01:58:37 +00:00
|
|
|
/**
|
2023-10-15 20:23:57 +00:00
|
|
|
* @param \Closure(): ISchemaWrapper $schemaClosure
|
2022-10-19 17:10:36 +00:00
|
|
|
*/
|
2023-10-15 20:23:57 +00:00
|
|
|
public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure(): ISchemaWrapper $schemaClosure
|
|
|
|
*/
|
|
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options): ?ISchemaWrapper
|
2022-10-19 17:10:36 +00:00
|
|
|
{
|
2022-08-13 01:58:37 +00:00
|
|
|
/** @var ISchemaWrapper $schema */
|
|
|
|
$schema = $schemaClosure();
|
|
|
|
|
2022-08-18 18:27:25 +00:00
|
|
|
if (!$schema->hasTable('memories')) {
|
|
|
|
$table = $schema->createTable('memories');
|
2022-08-13 01:58:37 +00:00
|
|
|
$table->addColumn('id', 'integer', [
|
|
|
|
'autoincrement' => true,
|
|
|
|
'notnull' => true,
|
|
|
|
]);
|
2022-08-20 21:28:41 +00:00
|
|
|
$table->addColumn('datetaken', Types::DATETIME, [
|
2022-08-13 01:58:37 +00:00
|
|
|
'notnull' => false,
|
|
|
|
]);
|
2022-08-20 21:28:41 +00:00
|
|
|
$table->addColumn('fileid', Types::BIGINT, [
|
2022-09-09 07:31:42 +00:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 20,
|
|
|
|
]);
|
2022-08-20 21:28:41 +00:00
|
|
|
$table->addColumn('dayid', Types::INTEGER, [
|
2022-09-09 07:31:42 +00:00
|
|
|
'notnull' => true,
|
|
|
|
]);
|
2022-08-20 21:28:41 +00:00
|
|
|
$table->addColumn('isvideo', Types::BOOLEAN, [
|
2022-09-09 07:31:42 +00:00
|
|
|
'notnull' => false,
|
2022-10-19 17:10:36 +00:00
|
|
|
'default' => false,
|
2022-09-09 07:31:42 +00:00
|
|
|
]);
|
2023-10-07 15:45:35 +00:00
|
|
|
|
|
|
|
// Version505001Date20230828155021
|
|
|
|
$table->addColumn('mtime', Types::BIGINT, [
|
2022-09-09 07:31:42 +00:00
|
|
|
'notnull' => true,
|
2023-10-07 15:45:35 +00:00
|
|
|
'length' => 20,
|
2022-09-09 07:31:42 +00:00
|
|
|
]);
|
2022-08-13 01:58:37 +00:00
|
|
|
|
|
|
|
$table->setPrimaryKey(['id']);
|
2023-10-07 15:45:35 +00:00
|
|
|
|
2023-10-15 20:23:57 +00:00
|
|
|
// All these are dropped in Version200000Date20220924015634
|
|
|
|
//
|
|
|
|
// $table->addColumn('uid', 'string', [
|
|
|
|
// 'notnull' => true,
|
|
|
|
// 'length' => 64,
|
|
|
|
// ]);
|
|
|
|
//
|
2023-10-07 15:45:35 +00:00
|
|
|
// $table->addIndex(['uid'], 'memories_uid_index');
|
|
|
|
// $table->addIndex(['uid', 'dayid'], 'memories_ud_index');
|
|
|
|
// $table->addUniqueIndex(['uid', 'fileid'], 'memories_day_uf_ui');
|
2022-08-18 00:35:14 +00:00
|
|
|
}
|
|
|
|
|
2022-08-13 01:58:37 +00:00
|
|
|
return $schema;
|
|
|
|
}
|
2023-10-15 20:23:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure(): ISchemaWrapper $schemaClosure
|
|
|
|
*/
|
|
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {}
|
2022-10-19 17:10:36 +00:00
|
|
|
}
|