Module: DataMapper::Repository::Migration
- Included in:
- DataMapper::Repository
- Defined in:
- lib/dm-core/repository.rb
Overview
TODO: move to dm-more/dm-migrations
Instance Method Summary collapse
-
#auto_migrate! ⇒ Object
TODO: move to dm-more/dm-migrations.
-
#auto_upgrade! ⇒ Object
TODO: move to dm-more/dm-migrations.
-
#map(*args) ⇒ Object
TODO: move to dm-more/dm-migrations.
-
#migrate! ⇒ Object
TODO: move to dm-more/dm-migrations.
-
#storage_exists?(storage_name) ⇒ True, False
TODO: move to dm-more/dm-migrations.
-
#type_map ⇒ Object
TODO: move to dm-more/dm-migrations.
Instance Method Details
#auto_migrate! ⇒ Object
TODO: move to dm-more/dm-migrations
138 139 140 |
# File 'lib/dm-core/repository.rb', line 138 def auto_migrate! AutoMigrator.auto_migrate(name) end |
#auto_upgrade! ⇒ Object
TODO: move to dm-more/dm-migrations
143 144 145 |
# File 'lib/dm-core/repository.rb', line 143 def auto_upgrade! AutoMigrator.auto_upgrade(name) end |
#map(*args) ⇒ Object
TODO: move to dm-more/dm-migrations
114 115 116 |
# File 'lib/dm-core/repository.rb', line 114 def map(*args) type_map.map(*args) end |
#migrate! ⇒ Object
TODO: move to dm-more/dm-migrations
133 134 135 |
# File 'lib/dm-core/repository.rb', line 133 def migrate! Migrator.migrate(name) end |
#storage_exists?(storage_name) ⇒ True, False
TODO: move to dm-more/dm-migrations
128 129 130 |
# File 'lib/dm-core/repository.rb', line 128 def storage_exists?(storage_name) adapter.storage_exists?(storage_name) end |