Included Modules

DataMapper::Migrations::PostgresAdapter

Public Class Methods

included(base) click to toggle source

@api private

    # File lib/dm-migrations/adapters/dm-postgres-adapter.rb, line 11
11:       def self.included(base)
12:         base.extend DataObjectsAdapter::ClassMethods
13:         base.extend ClassMethods
14:       end

Public Instance Methods

create_model_storage(model) click to toggle source

@api semipublic

    # File lib/dm-migrations/adapters/dm-postgres-adapter.rb, line 22
22:       def create_model_storage(model)
23:         without_notices { super }
24:       end
destroy_model_storage(model) click to toggle source

@api semipublic

    # File lib/dm-migrations/adapters/dm-postgres-adapter.rb, line 27
27:       def destroy_model_storage(model)
28:         if supports_drop_table_if_exists?
29:           without_notices { super }
30:         else
31:           super
32:         end
33:       end
upgrade_model_storage(model) click to toggle source

@api semipublic

    # File lib/dm-migrations/adapters/dm-postgres-adapter.rb, line 17
17:       def upgrade_model_storage(model)
18:         without_notices { super }
19:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.