Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Nursultan91/62ea40e65c08bfc5eac14a90c5de3e80 to your computer and use it in GitHub Desktop.
Save Nursultan91/62ea40e65c08bfc5eac14a90c5de3e80 to your computer and use it in GitHub Desktop.
Рельсе чем то не нравится эта миграция. аборт дает все время. что делать с ней?
class AddAttachmentImageToPhotos < ActiveRecord::Migration
def self.up
change_table :photos do |t|
t.attachment :image
end
end
def self.down
remove_attachment :photos, :image
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment