notebook/db/migrate/20191217224853_create_attribute_field_suggestions.rb
2019-12-17 16:49:28 -06:00

13 lines
283 B
Ruby

class CreateAttributeFieldSuggestions < ActiveRecord::Migration[6.0]
def change
create_table :attribute_field_suggestions do |t|
t.string :entity_type
t.string :category_label
t.string :suggestion
t.integer :weight
t.timestamps
end
end
end