chore: Add description field in custom attribute model (#2872)

This commit is contained in:
Muhsin Keloth
2021-08-24 21:17:23 +05:30
committed by GitHub
parent 09e3413d10
commit 1257f86f22
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddDescriptionToCustomAttributeDefinition < ActiveRecord::Migration[6.1]
def change
add_column :custom_attribute_definitions, :attribute_description, :text
end
end