cattr-app/server-application

View on GitHub
database/migrations/2019_09_04_050531_add_multiply_roles.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use App\Models\User;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddMultiplyRoles extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('user_role', function (Blueprint $table) {
            $table->unsignedInteger('user_id')->index();
            $table->unsignedInteger('role_id')->index();

            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
            $table->foreign('role_id')->references('id')->on('role')->onDelete('cascade');

            $table->unique(['user_id', 'role_id']);
        });

        $users = User::query()->select(['id', 'role_id'])->get();
        $usersTotal = $users->count();

        if ($usersTotal) {
            echo "\n";
            foreach ($users as $index => $user) {
                /** @var User $user */
                $user->role()->associate($user->role_id)->save();
                echo "\rAttaching latests roles to users..." . ($index + 1) . "/" . $usersTotal . " (" . floor($usersTotal / ($index + 1) * 100.0) . "%)";
            }
            echo "\nAll roles attached to users!\n\n";
        }

        Schema::table('users', function (Blueprint $table) {
            $table->dropForeign('users_role_id_foreign');
            $table->dropColumn('role_id');
            $table->dropColumn('user_role_value');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->unsignedInteger('role_id')->default(1);
            $table->unsignedInteger('user_role_value')->default(1);
            $table->foreign('role_id')->references('id')->on('role');
        });

        Schema::disableForeignKeyConstraints();
        Schema::dropIfExists('user_role');
        Schema::enableForeignKeyConstraints();
    }
}