mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add migration
This commit is contained in:
parent
fe51054122
commit
9028c88520
2 changed files with 39 additions and 6 deletions
|
@ -56,7 +56,8 @@ class MediaS3GarbageCollector extends Command
|
||||||
$limit = $this->option('limit');
|
$limit = $this->option('limit');
|
||||||
$minId = Media::orderByDesc('id')->where('created_at', '<', now()->subHours(12))->first()->id;
|
$minId = Media::orderByDesc('id')->where('created_at', '<', now()->subHours(12))->first()->id;
|
||||||
|
|
||||||
$gc = Media::whereNotNull(['status_id', 'cdn_url', 'replicated_at'])
|
$gc = Media::whereRemoteMedia(false)
|
||||||
|
->whereNotNull(['status_id', 'cdn_url', 'replicated_at'])
|
||||||
->whereNot('version', '4')
|
->whereNot('version', '4')
|
||||||
->where('id', '<', $minId)
|
->where('id', '<', $minId)
|
||||||
->inRandomOrder()
|
->inRandomOrder()
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('media', function (Blueprint $table) {
|
||||||
|
$table->index('remote_media');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('media', function (Blueprint $table) {
|
||||||
|
$table->dropIndex('media_remote_media_index');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue