Rails 4 datový typ pole PostgreSQL
V terminálu
$ rails generate migration AddTagsToProduct tags:string
Migrační soubor:
class AddTagsToProduct < ActiveRecord::Migration
def change
add_column :products, :tags, :string, array: true, default: []
end
end
https://coderwall.com/p/sud9ja /rails-4-the-postgresql-array-data-type