Browse Source

Add carehome charges value check field

pull/1410/head
Kat 3 years ago
parent
commit
df23dc5b8e
  1. 5
      db/migrate/20230313124749_add_carehome_charges_value_check.rb
  2. 1
      db/schema.rb

5
db/migrate/20230313124749_add_carehome_charges_value_check.rb

@ -0,0 +1,5 @@
class AddCarehomeChargesValueCheck < ActiveRecord::Migration[7.0]
def change
add_column :lettings_logs, :carehome_charges_value_check, :integer
end
end

1
db/schema.rb

@ -286,6 +286,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_03_20_084057) do
t.string "address_line2" t.string "address_line2"
t.string "town_or_city" t.string "town_or_city"
t.string "county" t.string "county"
t.integer "carehome_charges_value_check"
t.index ["bulk_upload_id"], name: "index_lettings_logs_on_bulk_upload_id" t.index ["bulk_upload_id"], name: "index_lettings_logs_on_bulk_upload_id"
t.index ["created_by_id"], name: "index_lettings_logs_on_created_by_id" t.index ["created_by_id"], name: "index_lettings_logs_on_created_by_id"
t.index ["location_id"], name: "index_lettings_logs_on_location_id" t.index ["location_id"], name: "index_lettings_logs_on_location_id"

Loading…
Cancel
Save