chore: Add the support for list and checkbox in custom attribute model (#3400)

ref: #3399
This commit is contained in:
Muhsin Keloth
2021-11-16 23:25:19 +05:30
committed by GitHub
parent e5a80195ab
commit 9ea42ebff2
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddValuesToCustomAttributeDefinitions < ActiveRecord::Migration[6.1]
def change
add_column :custom_attribute_definitions, :values, :jsonb, default: []
end
end