'Schema cache path for a database in rails
Where does the rails stores the schema cache for a database ? I know that we can specify schema_cache_path in the database.yml file. But if we didn't specify the path, in which path rails actually stores the schema ?
Solution 1:[1]
once you run rake db:schema:cache:dump you will be able to see the file under /db/schema_cache.yml
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | zaPlayer |
