nextcloud-gpodder/lib/Migration/Version0001Date202105200631...

59 lines
1.5 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Migration;
use Closure;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
class Version0001Date20210520063113 extends \OCP\Migration\SimpleMigrationStep {
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
2021-07-06 14:23:25 +02:00
if (!$schema->hasTable('gpodder_episode_action')) {
$table = $schema->createTable('gpodder_episode_action');
$table->addColumn('id', 'integer', [
'autoincrement' => true,
'notnull' => true,
]);
$table->addColumn('podcast', 'string', [
'notnull' => true,
'length' => 500
]);
$table->addColumn('episode', 'string', [
'notnull' => true,
'length' => 500,
]);
$table->addColumn('action', 'string', [
'notnull' => true,
'length' => 5
]);
$table->addColumn('position', 'integer', [
'notnull' => true,
]);
$table->addColumn('started', Types::INTEGER, [
'notnull' => true,
]);
$table->addColumn('total', Types::INTEGER, [
'notnull' => true,
]);
$table->addColumn('timestamp', Types::DATETIME_MUTABLE, [
'notnull' => true,
]);
$table->addColumn('user_id', Types::STRING, [
'notnull' => true,
'length' => 200,
]);
$table->setPrimaryKey(['id']);
2021-07-06 14:23:25 +02:00
$table->addUniqueIndex(['episode', 'user_id'], 'gpodder_episode_user_id');
}
return $schema;
}
}