Sha256: 885af8c04de18f115de17d14eb76b071cf8f8d5ca71d7918841788a634e7f4c0
Contents?: true
Size: 373 Bytes
Versions: 21
Compression:
Stored size: 373 Bytes
Contents
class Create<%= model_name_pluralize_underscored.camelize %> < ActiveRecord::Migration def change create_table :<%= model_name_pluralize_underscored %>, force: true do |t| <%- db_columns.each do |column_name, column_attrs| -%> t.<%= column_attrs[:type] %> :<%= column_name %>, null: <%= column_attrs[:null] %> <%- end -%> end end end
Version data entries
21 entries across 21 versions & 1 rubygems