diff options
author | Daniel Hunsaker <danhunsaker@gmail.com> | 2017-11-12 08:18:50 -0700 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-11-12 16:18:50 +0100 |
commit | cf7e8409909e1ea02dff9056133449d6cbd34d72 (patch) | |
tree | d8d77285d0c5413d8b6fa3c9fc30518c2f96c6ac /app/models/account.rb | |
parent | 252d0fe020c919bf53a42a96bffbfd342563250a (diff) |
Update model annotations to use BIGINT for IDs (#5461)
All the migrations have been updated to use BIGINTs for ID fields in the DB, but ActiveRecord needs to be told to treat those values as BIGINT as well. This PR does that.
Diffstat (limited to 'app/models/account.rb')
-rw-r--r-- | app/models/account.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 7e4d29f96..6f6010f7a 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -3,7 +3,7 @@ # # Table name: accounts # -# id :integer not null, primary key +# id :bigint not null, primary key # username :string default(""), not null # domain :string # secret :string default(""), not null |