Sha256: fab551f3b865c47b0c56fc1967b414cf7be82805dd9d5e31a47a68c1b693e927
Contents?: true
Size: 352 Bytes
Versions: 5
Compression:
Stored size: 352 Bytes
Contents
class <%= migration_class_name %> < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def up <%- models.each do |m| -%> <%= m.name %>.create_translation_table! <%= model_attrs[m.name] %> <%- end -%> end def down <%- models.each do |m| -%> <%= m.name %>.drop_translation_table! <%- end -%> end end
Version data entries
5 entries across 5 versions & 1 rubygems