Merge pull request #4414 from pixelfed/staging

Staging
pull/4440/head
daniel 2023-05-25 00:03:58 -06:00 zatwierdzone przez GitHub
commit f4e7ca6b0e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 72 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddIndexToFollowersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('followers', function (Blueprint $table) {
$table->index('profile_id');
$table->index('following_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('followers', function (Blueprint $table) {
//
});
}
}

Wyświetl plik

@ -0,0 +1,39 @@
<?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::create('status_edits', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('status_id')->unsigned()->index();
$table->bigInteger('profile_id')->unsigned()->index();
$table->text('caption')->nullable();
$table->text('spoiler_text')->nullable();
$table->json('ordered_media_attachment_ids')->nullable();
$table->json('media_descriptions')->nullable();
$table->json('poll_options')->nullable();
$table->boolean('is_nsfw')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('status_edits');
}
};