mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-11 16:41:59 -06:00
36 lines
964 B
PHP
36 lines
964 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use FireflyIII\Models\Configuration;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
/**
|
|
* Class ConfigSeeder
|
|
*/
|
|
class ConfigSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run()
|
|
{
|
|
$entry = Configuration::where('name', 'db_version')->first();
|
|
if (null === $entry) {
|
|
Log::warning('No database version entry is present. Database is assumed to be OLD (version 1).');
|
|
// FF old or no version present. Put at 1:
|
|
Configuration::create(
|
|
[
|
|
'name' => 'db_version',
|
|
'data' => 1,
|
|
]
|
|
);
|
|
}
|
|
if (null !== $entry) {
|
|
$version = (int)config('firefly.db_version');
|
|
$entry->data = $version;
|
|
$entry->save();
|
|
|
|
Log::warning(sprintf('Database entry exists. Update to latest version (%d)', $version));
|
|
}
|
|
}
|
|
}
|