25 lines
		
	
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
 | 
						|
class CreateUsersTable extends Migration
 | 
						|
{
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        Schema::create('users', function (Blueprint $table) {
 | 
						|
            $table->increments('id');
 | 
						|
            $table->integer('account_id')->index();
 | 
						|
            $table->string('first_name', 25);
 | 
						|
            $table->string('last_name', 25);
 | 
						|
            $table->string('email', 50)->unique();
 | 
						|
            $table->string('password')->nullable();
 | 
						|
            $table->boolean('owner')->default(false);
 | 
						|
            $table->string('photo_path', 100)->nullable();
 | 
						|
            $table->rememberToken();
 | 
						|
            $table->timestamps();
 | 
						|
            $table->softDeletes();
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |