mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
283 B
Ruby
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
|