mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
d27000f05f
Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
13 lines
320 B
PHP
13 lines
320 B
PHP
<?php
|
|
|
|
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
|
|
|
class CreatePrometheusSettings extends SettingsMigration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$this->migrator->add('dataintegration.prometheus_enabled', false);
|
|
$this->migrator->add('dataintegration.prometheus_allowed_ips', []);
|
|
}
|
|
}
|