mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-08-26 13:17:30 -05:00
77 lines
2.6 KiB
PHP
77 lines
2.6 KiB
PHP
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Console\Commands\Correction;
|
|
|
|
use FireflyIII\Console\Commands\ShowsFriendlyMessages;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class RollbacksSingleMigration extends Command
|
|
{
|
|
use ShowsFriendlyMessages;
|
|
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'correction:rollback-single-migration {--force}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Removes the last entry from the migration table. ';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
$entry = DB::table('migrations')->orderBy('id', 'DESC')->first();
|
|
|
|
if (null === $entry) {
|
|
$this->friendlyError('There are no more database migrations to rollback.');
|
|
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
$this->friendlyLine(sprintf('This command will remove the database migration entry called "%s" from your database.', $entry->migration));
|
|
$this->friendlyLine('This does not change the database in anyway. It makes Firefly III forget it made the changes in this particular migration.');
|
|
$this->friendlyLine('');
|
|
$this->friendlyLine('If you run "php artisan migrate" after doing this, Firefly III will try to run the database migration again.');
|
|
$this->friendlyLine('Missing tables or indices will be created.');
|
|
$this->friendlyLine('This may not work, or give you warnings, but if you have a botched database it may restore it again.');
|
|
$this->friendlyLine('');
|
|
$this->friendlyLine('If this doesn\'t work, run the command a few times to remove more rows and try "php artisan migrate" again.');
|
|
$this->friendlyLine('');
|
|
$res = true;
|
|
if (!$this->option('force')) {
|
|
$this->friendlyWarning('Use this command at your own risk.');
|
|
$res = $this->confirm('Are you sure you want to continue?');
|
|
}
|
|
|
|
if ($res) {
|
|
DB::table('migrations')
|
|
->where('id', (int) $entry->id)
|
|
->delete()
|
|
;
|
|
$this->friendlyInfo(sprintf('Database migration #%d ("%s") is deleted.', $entry->id, $entry->migration));
|
|
$this->friendlyLine('');
|
|
$this->friendlyLine('Try running "php artisan migrate" now.');
|
|
$this->friendlyLine('');
|
|
}
|
|
if (!$res) {
|
|
$this->friendlyError('User cancelled, will not delete anything.');
|
|
}
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|