Add migration

pull/3950/head
Daniel Supernault 2 years ago
parent f85e4843d8
commit cf9f5f0bab
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -0,0 +1,36 @@
<?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('status_id');
$table->index('replicated_at');
$table->index('version');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('media', function (Blueprint $table) {
$table->dropIndex('media_status_id_index');
$table->dropIndex('media_replicated_at_index');
$table->dropIndex('media_version_index');
});
}
};
Loading…
Cancel
Save