README.md in secondbase-2.1.0 vs README.md in secondbase-2.1.2
- old
+ new
@@ -49,10 +49,11 @@
* db:purge
* db:purge:all
* db:migrate
* db:test:purge
* db:test:prepare
+* db:schema:cache:dump
Not all base database tasks make sense to run a mirrored SecondBase task. These include tasks that move a single migration up/down, reporting on your database's current status/version, and others. These tasks have to be run explicitly and only operate on your SecondBase database. Each support any feature that their matching `:db` task has. For example, using `VERSION=123` to target a specific migration.
* db:second_base:migrate:up
* db:second_base:migrate:down
@@ -111,11 +112,11 @@
require 'second_base/test_help'
```
#### Configurations
-All SecondBase railtie settings are best done in a `config/initializers/secondbase.rb` file. We support the following configurations:
+All SecondBase railtie settings are best done in a `config/application.rb` file. We support the following configurations:
```ruby
config.second_base.path # Default: 'db/secondbase'
config.second_base.config_key # Default: 'secondbase'
```
@@ -164,10 +165,9 @@
def query_cache_secondBase
SecondBase::Base.connection.cache { yield }
end
end
```
-
## Versions
The current master branch is for Rails v4.0.0 and up and. We have older work in previous v1.0 releases which partial work for Rails 3.2 or lower. These old versions are feature incomplete and are not supported.