diff options
author | David Gay <david@davidgay.org> | 2021-05-18 18:35:49 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-18 18:35:49 -0400 |
commit | 9ab7dfd99e7015513bfe1a092f257c1c7a7afb1b (patch) | |
tree | db536029ff1031d33468899e22b3c26dfcddbe2d /db | |
parent | 4a6c06eb681575dbf1ee58d3b1f667e79051b1e2 (diff) |
Display hearth foundation requirements
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20210518214713_create_hearth_amenities.rb | 2 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20210518214713_create_hearth_amenities.rb b/db/migrate/20210518214713_create_hearth_amenities.rb index dbbea6d..cf95352 100644 --- a/db/migrate/20210518214713_create_hearth_amenities.rb +++ b/db/migrate/20210518214713_create_hearth_amenities.rb @@ -4,7 +4,7 @@ class CreateHearthAmenities < ActiveRecord::Migration[6.1] t.string :gid t.string :name t.text :description - t.jsonb :build_data + t.jsonb :whatnot t.timestamps end diff --git a/db/schema.rb b/db/schema.rb index 7cae7d0..0fd6922 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -73,7 +73,7 @@ ActiveRecord::Schema.define(version: 2021_05_18_214817) do t.string "gid" t.string "name" t.text "description" - t.jsonb "build_data" + t.jsonb "whatnot" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["gid"], name: "index_hearth_amenities_on_gid" |