mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
29 lines
906 B
PHP
29 lines
906 B
PHP
<?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
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
if (! Schema::hasTable('anime_studio')) {
|
|
Schema::create('anime_studio', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->timestamps(6);
|
|
$table->unsignedBigInteger('anime_id');
|
|
$table->foreign('anime_id')->references('anime_id')->on('anime')->cascadeOnDelete();
|
|
$table->unsignedBigInteger('studio_id');
|
|
$table->foreign('studio_id')->references('studio_id')->on('studios')->cascadeOnDelete();
|
|
$table->unique(['anime_id', 'studio_id'], 'anime_studio_unique');
|
|
});
|
|
}
|
|
}
|
|
};
|