public
Description: All the extra stuff you could want for the Mack Framework.
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack-more.git
markbates (author)
Tue Aug 12 11:45:17 -0700 2008
commit  80324859b13764c03c7525a6811affbec0667381
tree    f8bcb2d741766ab537dbbdadf054375e371501d0
parent  5b2d5db9aeea49c0b4fe749a139b74c7f9cfb874
mack-more / mack-orm / lib / mack-orm / database_migrations.rb
100644 19 lines (15 sloc) 0.407 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Mack
  module Database
    module Migrations
      
      def self.migrate
        # raise NoMethodError.new(:migrate)
      end
      
      def self.rollback(step)
        # raise NoMethodError.new(:rollback)
      end
      
      def self.abort_if_pending_migrations
        # raise NoMethodError.new(:abort_if_pending_migrations)
      end
      
    end # Migrations
  end # Database
end # Mack