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.
This commit is contained in:
		
							parent
							
								
									252d0fe020
								
							
						
					
					
						commit
						cf7e840990
					
				
					 30 changed files with 76 additions and 76 deletions
				
			
		|  | @ -11,8 +11,8 @@ | |||
| #  updated_at                  :datetime         not null | ||||
| #  last_successful_delivery_at :datetime | ||||
| #  domain                      :string | ||||
| #  account_id                  :integer          not null | ||||
| #  id                          :integer          not null, primary key | ||||
| #  account_id                  :bigint           not null | ||||
| #  id                          :bigint           not null, primary key | ||||
| # | ||||
| 
 | ||||
| class Subscription < ApplicationRecord | ||||
|  |  | |||
		Reference in a new issue