Answers for "arrays rails model"

1

model with array rails

create_table :products do |t|
  t.string :name
  t.text :colors, array: true, default: []
end
Posted by: Guest on July-01-2020

Browse Popular Code Answers by Language