aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/schema_cache.rb
Commit message (Collapse)AuthorAgeFilesLines
* Simplify the code in schema cacheSean Griffin2014-05-231-31/+11
| | | | | The use of default procs was unnessecary, made the code confusing to follow, and made marshalling needlessly complex.
* Removed unsued deprecation requireRashmi Yadav2013-07-041-1/+0
|
* Remove deprecated nil-passing to `SchemaCache` methods.Yves Senn2013-07-041-28/+8
|
* fix hash duping on 1.9Aaron Patterson2013-03-141-1/+1
|
* just access the ivars rather than rb_iv_getAaron Patterson2013-03-141-5/+3
|
* hide more data in the schema cacheAaron Patterson2013-03-141-1/+21
|
* safely publish columns and columns hash infoAaron Patterson2013-03-141-4/+12
|
* dup and set the default proc to nil rather than looping through everythingAaron Patterson2013-03-141-1/+3
|
* schema cache already has the columns as a hash, so use thatAaron Patterson2012-11-251-1/+11
|
* speed up fixture loading by querying the schema cache for column namesAaron Patterson2012-11-251-1/+10
|
* Support judgement expired schema cache dump.kennyj2012-03-011-3/+6
|
* Load db/schema_cache.dump duaring boot time.kennyj2012-03-011-1/+1
|
* Add db:schema:cache:dump and db:schema:cache:clear tasks.kennyj2012-03-011-0/+9
|
* Add support schema cache dump and load.kennyj2012-03-011-14/+34
|
* columns method doesn't have name argumentRafael Mendonça França2012-02-021-1/+1
|
* Should clear the primary keys cache alsoJon Leighton2011-12-161-0/+1
|
* Don't store defaults in the schema cacheJon Leighton2011-12-161-3/+2
|
* Defaults hash can go on the modelJon Leighton2011-12-161-14/+1
|
* Cache columns at the model level.Jon Leighton2011-12-161-9/+2
| | | | Allows two models to use the same table but have different primary keys.
* Use `table_exists?` from the schema cache.Aaron Patterson2011-12-091-4/+2
|
* pushing caching and visitors down to the connectionAaron Patterson2011-11-191-0/+72