fruivita/corporate

View on GitHub
database/migrations/create_users_table.php.stub

Summary

Maintainability
Test Coverage
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

/*
 * Usuários (pessoas)
 *
 * @see https://laravel.com/docs/9.x/migrations
 * @see https://dev.mysql.com/doc/refman/8.0/en/integer-types.html
 * @see https://docs.microsoft.com/pt-br/windows/win32/adschema/a-samaccountname?redirectedfrom=MSDN
 */
return new class extends Migration {
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->unsignedBigInteger('department_id')->nullable();
            $table->unsignedBigInteger('occupation_id')->nullable();
            $table->unsignedBigInteger('duty_id')->nullable();
            $table->string('name', 255)->nullable();
            $table->string('username', 20)->unique();
            $table->timestamps();

            $table
                ->foreign('department_id')
                ->references('id')
                ->on('departments')
                ->onUpdate('cascade');
            $table
                ->foreign('occupation_id')
                ->references('id')
                ->on('occupations')
                ->onUpdate('cascade');
            $table
                ->foreign('duty_id')
                ->references('id')
                ->on('duties')
                ->onUpdate('cascade');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('users');
    }
};