Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
246 B

class LaRentRange < ApplicationRecord
PROVIDER_TYPE = {
"LA": 1,
"HA": 2,
}.freeze
NEEDS_TYPE = {
"General Needs": 1,
"Supported Housing": 0,
}.freeze
enum provider_type: PROVIDER_TYPE
enum needstype: NEEDS_TYPE
end