39 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
 | 
						|
class CreateUsersTable extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Run the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        Schema::create('users', function (Blueprint $table) {
 | 
						|
            $table->id();
 | 
						|
            $table->string('name')->unique();
 | 
						|
            $table->string('email')->unique()->nullable();
 | 
						|
            $table->timestamp('email_verified_at')->nullable();
 | 
						|
            $table->foreignId('grupo_de_compra_id')->nullable();
 | 
						|
            $table->boolean('is_admin');
 | 
						|
            $table->unique(['name', 'is_admin']);
 | 
						|
            $table->string('password');
 | 
						|
            $table->rememberToken();
 | 
						|
            $table->timestamps();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function down()
 | 
						|
    {
 | 
						|
        Schema::dropIfExists('users');
 | 
						|
    }
 | 
						|
}
 |