module MinceMigrator

module Migrations
  require 'time'

  module {{klass_name}}
    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 "{{time_created}}"
    end

    module Temporary
      # Migration dependent classes go here
    end
  end
end

end