logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20170330164118_add_attachment_data_to_imports.rb (215B)


  1. class AddAttachmentDataToImports < ActiveRecord::Migration[4.2]
  2. def self.up
  3. change_table :imports do |t|
  4. t.attachment :data
  5. end
  6. end
  7. def self.down
  8. remove_attachment :imports, :data
  9. end
  10. end