Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
Updated migration generator template.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry committed Mar 18, 2012
1 parent 32199e2 commit b7bfdec
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions generators/paperclip/templates/paperclip_migration.rb.erb
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
class <%= migration_name %> < ActiveRecord::Migration
def self.up
def change
<% attachments.each do |attachment| -%>
add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_name, :string
add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_content_type, :string
add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_size, :integer
add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_updated_at, :datetime
<% end -%>
end

def self.down
<% attachments.each do |attachment| -%>
remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_name
remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_content_type
remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_file_size
remove_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_updated_at
add_column :<%= class_name.underscore.camelize.tableize %>, :<%= attachment %>_fingerprint, :string, length: 32
<% end -%>
end
end

0 comments on commit b7bfdec

Please sign in to comment.