misc_pterodactyl-panel/app/Console/Commands/Overrides/SeedCommand.php

25 lines
577 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Console\Commands\Overrides;
use Pterodactyl\Console\RequiresDatabaseMigrations;
use Illuminate\Database\Console\Seeds\SeedCommand as BaseSeedCommand;
class SeedCommand extends BaseSeedCommand
{
use RequiresDatabaseMigrations;
/**
2021-01-23 22:12:15 +00:00
* Block someone from running this seed command if they have not completed
* the migration process.
*/
2021-01-23 22:12:15 +00:00
public function handle(): int
{
2021-01-23 20:33:34 +00:00
if (!$this->hasCompletedMigrations()) {
return $this->showMigrationWarning();
}
return parent::handle();
}
}