engine = 'InnoDB'; $table->increments('id'); $table->string('name')->nullable(); $table->string('email')->unique(); $table->string('password'); $table->string('activation_code')->nullable()->index(); $table->string('persist_code')->nullable(); $table->string('reset_password_code')->nullable()->index(); $table->text('permissions')->nullable(); $table->boolean('is_activated')->default(0); $table->timestamp('activated_at')->nullable(); $table->timestamp('last_login')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('users'); } }