* * @author Jonathan Treffler * * @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 . * */ use Closure; use OCP\DB\Types; use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; class Version001Date20240515221000 extends SimpleMigrationStep { public const SUBSCRIPTIONS_TABLE = "dav_push_subscriptions"; /** * @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) { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable(self::SUBSCRIPTIONS_TABLE)) { $table = $schema->createTable(self::SUBSCRIPTIONS_TABLE); $table->addColumn('id', Types::INTEGER, [ 'autoincrement' => true, 'notnull' => true, ]); $table->addColumn('user_id', Types::STRING, [ 'notnull' => true, 'length' => 200, ]); $table->addColumn('collection_name', Types::STRING, [ 'notnull' => true, 'length' => 100, ]); $table->addColumn('transport', Types::STRING, [ 'notnull' => true, 'length' => 100, ]); $table->addColumn('creation_timestamp', Types::BIGINT, [ 'notnull' => true, ]); $table->addColumn('expiration_timestamp', Types::BIGINT, [ 'notnull' => true, ]); $table->setPrimaryKey(['id']); } return $schema; } }