Loading database/migrations/2018_06_04_214558_admin_users.php +2 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,8 @@ class AdminUsers extends Migration $table->increments('id'); $table->integer('admin_user_group_id')->unsigned(); $table->string('full_name'); $table->string('email'); $table->string('password'); $table->string('email', 100); $table->string('password', 100); $table->timestamps(); $table->softDeletes(); // this means that we can keep ahold of old users but prevent access Loading Loading
database/migrations/2018_06_04_214558_admin_users.php +2 −2 Original line number Diff line number Diff line Loading @@ -17,8 +17,8 @@ class AdminUsers extends Migration $table->increments('id'); $table->integer('admin_user_group_id')->unsigned(); $table->string('full_name'); $table->string('email'); $table->string('password'); $table->string('email', 100); $table->string('password', 100); $table->timestamps(); $table->softDeletes(); // this means that we can keep ahold of old users but prevent access Loading