Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
14 lines
300 B
PHP
14 lines
300 B
PHP
<?php
|
|
|
|
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
|
|
|
return new class extends SettingsMigration
|
|
{
|
|
public function up(): void
|
|
{
|
|
if ($this->migrator->exists('general.trackback_enabled')) {
|
|
$this->migrator->delete('general.trackback_enabled');
|
|
}
|
|
}
|
|
};
|