mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Add missing migration
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?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
|
||||
{
|
||||
Schema::create('user_activity_stats_hourly', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->dateTime('stat_hour')->index();
|
||||
$table->integer('downloads_count')->default(0);
|
||||
$table->integer('api_hits_count')->default(0);
|
||||
$table->timestamps();
|
||||
|
||||
// Ensure one record per hour
|
||||
$table->unique('stat_hour');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('user_activity_stats_hourly');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user