feat: add champion role database

This commit is contained in:
Rico van Zelst
2023-11-01 14:55:17 +01:00
parent 5849764f21
commit 509fbed10b
8 changed files with 286 additions and 0 deletions

View File

@@ -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.
*/
public function up(): void
{
Schema::create('champion_roles', function (Blueprint $table) {
$table->id();
$table->integer('champion_id')->unique();
$table->string('champion_name');
$table->json('roles');
$table->timestamps();
$table->foreign('champion_id')->references('champion_id')->on('champions')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('champion_roles');
}
};