Skip to content

Instantly share code, notes, and snippets.

@sgharms
Forked from bruce/migration-down.rb
Created January 30, 2009 22:30
Show Gist options
  • Save sgharms/55314 to your computer and use it in GitHub Desktop.
Save sgharms/55314 to your computer and use it in GitHub Desktop.
class AClassicPattern < ActiveRecord::Migration
def self.up
begin
try
rescue
raise ObiWan, "You're my only hope."
end
end
def self.down
raise NotImplementedError, "There is no undo"
end
def self.try
raise NotImplementedError, "Do or do not. There is no 'try.'"
ghost = class << obj; self; end
ghost.remove_method :try
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment