Skip to content

Commit

Permalink
fix: grow overview_stats total_seconds played (#1399)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches authored Jul 20, 2024
1 parent 1f3aee3 commit ba73a59
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types=1);

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
public function up(): void
{
Schema::table('overview_stats', function (Blueprint $table) {
$table->bigInteger('total_seconds_played')->change();
});
}

public function down(): void
{
Schema::table('overview_stats', function (Blueprint $table) {
$table->integer('total_seconds_played')->change();
});
}
};

0 comments on commit ba73a59

Please sign in to comment.