aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb
Commit message (Collapse)AuthorAgeFilesLines
* fix typos in AR. lots of them.Vipul A M2013-03-191-1/+1
|
* reserve index name chars for internal rails operationsYves Senn2013-02-201-0/+9
| | | | | | | | | | | Some adapter (SQLite3) need to perform renaming operations to support the rails DDL. These rename prefixes operate with prefixes. When an index name already uses up the full space provieded by `index_name_length` these internal operations will fail. This patch introduces `allowed_index_name_length` which respects the amount of characters used for internal operations. It will always be <= `index_name_length` and every adapter can define how many characters need to be reserved.
* Better docs formattingSebastian Martinez2011-04-221-10/+11
|
* made in_clause_length default nil (no limit)Alex Rothenberg2010-12-021-2/+2
|
* standarizes the use of the article "an" for "SQL" and "SQLite"Xavier Noria2010-08-051-1/+1
|
* make add_index and remove_index more resilient; new rename_index method; ↵Étienne Barrié2010-05-181-0/+57
track database limits [#3452 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>