module MinceMigrator module Migrations require 'time' module FirstMigration2 def self.run # Actual migration goes here end def self.revert # In case you need to revert this one migration end # So you can change the order to run more easily def self.time_created Time.parse "2013-03-28 05:03:26 UTC" end module Temporary # Migration dependent classes go here end end end end