Module: Paperclip::Schema::Statements
- Defined in:
- lib/paperclip/schema.rb
Instance Method Summary collapse
- #add_attachment(table_name, *attachment_names) ⇒ Object
- #drop_attached_file(*args) ⇒ Object
- #remove_attachment(table_name, *attachment_names) ⇒ Object
Instance Method Details
#add_attachment(table_name, *attachment_names) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/paperclip/schema.rb', line 21 def (table_name, *) if .empty? raise ArgumentError, "Please specify attachment name in your add_attachment call in your migration." end = . .each do || COLUMNS.each_pair do |column_name, column_type| = .merge([column_name.to_sym] || {}).except(*COLUMNS.keys) add_column(table_name, "#{}_#{column_name}", column_type, **) end end end |
#drop_attached_file(*args) ⇒ Object
48 49 50 51 |
# File 'lib/paperclip/schema.rb', line 48 def drop_attached_file(*args) Paperclip.deprecator.warn "Method `drop_attached_file` in the migration has been deprecated and will be replaced by `remove_attachment`." (*args) end |
#remove_attachment(table_name, *attachment_names) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/paperclip/schema.rb', line 36 def (table_name, *) if .empty? raise ArgumentError, "Please specify attachment name in your remove_attachment call in your migration." end .each do || COLUMNS.keys.each do |column_name| remove_column(table_name, "#{}_#{column_name}") end end end |