Sha256: 7f6ddf0df932179246a169ed1c403a278421859a3bf6bc6471cdcec9d415ee21
Contents?: true
Size: 413 Bytes
Versions: 42
Compression:
Stored size: 413 Bytes
Contents
migration <%= migration_number.to_i %>, :<%= migration_file_name %> do up do create_table :<%= table_name %> do <% attributes.each do |attribute| -%> column :<%= attribute.name -%>, <%= attribute.type_class %> <% end -%> <% if options[:timestamps] %> column :created_at, DateTime column :updated_at, DateTime <% end -%> end end down do drop_table :<%= table_name %> end end
Version data entries
42 entries across 42 versions & 2 rubygems