Fix usage_broadband, since our usage data is a float
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 31s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
2024-07-26 14:45:43 +10:00
parent 667109150d
commit 1c4cb6f38c
5 changed files with 73 additions and 24 deletions

View File

@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
DB::update('ALTER TABLE usage_broadband ALTER COLUMN up_peak TYPE REAL');
DB::update('ALTER TABLE usage_broadband ALTER COLUMN down_peak TYPE REAL');
DB::update('ALTER TABLE usage_broadband ALTER COLUMN up_offpeak TYPE REAL');
DB::update('ALTER TABLE usage_broadband ALTER COLUMN down_offpeak TYPE REAL');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// NOOP
}
};