2017-07-05 15:44:24 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2017-07-05 15:44:24 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-07-05 15:44:24 +03:00
|
|
|
*
|
|
|
|
* @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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-07-05 15:44:24 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Core\Migrations;
|
|
|
|
|
2021-01-12 12:20:12 +03:00
|
|
|
use OCP\DB\Types;
|
2018-01-17 13:35:20 +03:00
|
|
|
use OCP\DB\ISchemaWrapper;
|
2017-07-05 15:44:24 +03:00
|
|
|
use OCP\Migration\IOutput;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\Migration\SimpleMigrationStep;
|
2017-07-05 15:44:24 +03:00
|
|
|
|
|
|
|
class Version13000Date20170705121758 extends SimpleMigrationStep {
|
|
|
|
/**
|
|
|
|
* @param IOutput $output
|
2018-01-17 13:35:20 +03:00
|
|
|
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
2017-07-05 15:44:24 +03:00
|
|
|
* @param array $options
|
2018-01-17 13:35:20 +03:00
|
|
|
* @return null|ISchemaWrapper
|
2017-07-05 15:44:24 +03:00
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
|
2018-01-17 13:35:20 +03:00
|
|
|
/** @var ISchemaWrapper $schema */
|
2017-07-05 15:44:24 +03:00
|
|
|
$schema = $schemaClosure();
|
|
|
|
|
|
|
|
if (!$schema->hasTable('personal_sections')) {
|
|
|
|
$table = $schema->createTable('personal_sections');
|
|
|
|
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('id', Types::STRING, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => false,
|
|
|
|
'length' => 64,
|
|
|
|
]);
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('class', Types::STRING, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 255,
|
|
|
|
]);
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('priority', Types::INTEGER, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 6,
|
|
|
|
'default' => 0,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$table->setPrimaryKey(['id'], 'personal_sections_id_index');
|
|
|
|
$table->addUniqueIndex(['class'], 'personal_sections_class');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$schema->hasTable('personal_settings')) {
|
|
|
|
$table = $schema->createTable('personal_settings');
|
|
|
|
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('id', Types::INTEGER, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'autoincrement' => true,
|
|
|
|
'notnull' => true,
|
|
|
|
'length' => 20,
|
|
|
|
]);
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('class', Types::STRING, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 255,
|
|
|
|
]);
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('section', Types::STRING, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => false,
|
|
|
|
'length' => 64,
|
|
|
|
]);
|
2020-06-30 23:12:06 +03:00
|
|
|
$table->addColumn('priority', Types::INTEGER, [
|
2017-07-05 15:44:24 +03:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 6,
|
|
|
|
'default' => 0,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$table->setPrimaryKey(['id'], 'personal_settings_id_index');
|
|
|
|
$table->addUniqueIndex(['class'], 'personal_settings_class');
|
|
|
|
$table->addIndex(['section'], 'personal_settings_section');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $schema;
|
|
|
|
}
|
|
|
|
}
|