choore: Change values to attribute_values in custom attributes (#3413)

This commit is contained in:
Muhsin Keloth
2021-11-18 18:59:28 +05:30
committed by GitHub
parent a3ba8f9e35
commit bf96e8b68d
5 changed files with 10 additions and 4 deletions

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_11_16_131740) do
ActiveRecord::Schema.define(version: 2021_11_18_100301) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements"
@@ -355,7 +355,7 @@ ActiveRecord::Schema.define(version: 2021_11_16_131740) do
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.text "attribute_description"
t.jsonb "values", default: []
t.jsonb "attribute_values", default: []
t.index ["account_id"], name: "index_custom_attribute_definitions_on_account_id"
t.index ["attribute_key", "attribute_model"], name: "attribute_key_model_index", unique: true
end