diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-06-30 12:01:41 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-06-30 12:01:41 -0400 |
commit | 9ba53806df1f82bc3b110a151585e1c26c4dfb64 (patch) | |
tree | b76c8005f81e7232a58f96b2548b9231e1c5ca54 /app | |
parent | a0863f309f8abc2e37af5adbfbeee6e85eccb60c (diff) |
Apparently integers in postgress are signed 32-bit integers. I overflowed them.
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/users_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index e9efb36..f4cb15c 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -41,7 +41,7 @@ class UsersController < ApplicationController sign_in @user if @user.id == 1 # This is the first user, so give them all the power - @user.permissions = 0xFFFFFFFF + @user.permissions = 0x7FFFFFFF @user.save end format.html { redirect_to root_path, notice: 'User was successfully created.' } |