aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/rails/generators/active_record/model/templates/module.rb
blob: fca29080800f62c8b710d4421de22684c4f971d9 (plain) (tree)
1
2
3
4
5
6
7
                            




                                                   
          
<% module_namespacing do -%>
module <%= class_path.map(&:camelize).join('::') %>
  def self.table_name_prefix
    '<%= class_path.join('_') %>_'
  end
end
<% end -%>