Files
OSJ/classes/migration/upgrade/v3_4_0/I7128_SectionEntityDAORefactor.php
CHIEFSOFT\ameye df3a033196 first commit
2024-06-08 17:09:23 -04:00

45 lines
1.2 KiB
PHP

<?php
/**
* @file classes/migration/upgrade/v3_4_0/I7128_SectionEntityDAORefactor.php
*
* Copyright (c) 2014-2023 Simon Fraser University
* Copyright (c) 2000-2023 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class I7128_SectionEntityDAORefactor
*
* @brief Remove deprecated setting_type requirement after converting the section DAO to use new repository pattern
*/
namespace APP\migration\upgrade\v3_4_0;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use PKP\install\DowngradeNotSupportedException;
class I7128_SectionEntityDAORefactor extends \PKP\migration\Migration
{
/**
* Run the migration.
*/
public function up(): void
{
if (Schema::hasColumn('section_settings', 'setting_type')) {
Schema::table('section_settings', function (Blueprint $table) {
$table->dropColumn('setting_type');
});
}
}
/**
* Reverse the downgrades
*
* @throws DowngradeNotSupportedException
*/
public function down(): void
{
throw new DowngradeNotSupportedException();
}
}