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->rememberToken(); $table->timestamps(); $table->softDeletes(); }); } }