aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Fix documents for create_join_tableSatoshi Ebisawa2013-06-211-2/+2
* Merge pull request #10425 from ranjaykrishna/push_add_column_options_to_schem...Rafael Mendonça França2013-06-132-11/+3
|\
| * Moving add_column_options! up to SchemaCreationjeran2013-06-122-11/+3
* | Fixes #10432 add_column not creating array columns in PostgreSQLAdam Anderson2013-06-041-0/+1
* | Remove behavior that deals with a string as third argument of `add_index`, be...kennyj2013-06-021-28/+14
* | Merge pull request #10556 from Empact/deprecate-schema-statements-distinctRafael Mendonça França2013-05-121-1/+2
* | Merge pull request #10572 from nertzy/dont-modify-options-hash-in-primary-keyRafael Mendonça França2013-05-111-2/+1
* | Fix that #exists? can produce invalid SQL: "SELECT DISTINCT DISTINCT"Ben Woosley2013-05-101-3/+11
* | Move method used only in the test to the test code itselfIvan Kataitsev2013-04-251-8/+0
* | Make references with index:true pass Hash options to add_index.Victor Costan2013-04-011-1/+1
* | Refactor index algorithm lookup so that it only builds the available options ...Carlos Antonio da Silva2013-03-301-4/+4
* | Make docs a little bit more consistent with colons [ci skip]Carlos Antonio da Silva2013-03-301-9/+9
* | Fix code examples indent in new index options docs [ci skip]Carlos Antonio da Silva2013-03-301-3/+3
* | Use new hash style in doc examples [ci skip]Carlos Antonio da Silva2013-03-301-2/+2
|/
* Add support for FULLTEXT and SPATIAL indexes using the :type flag for MySQL.Ken Mazaika2013-03-272-2/+15
* Merge pull request #9928 from vipulnsward/fix_rename_auto_increment_mysqlRafael Mendonça França2013-03-261-0/+3
|\
| * respect auto_increment in rename_column for mysqlVipul A M2013-03-271-0/+3
* | Checks :algorithm argument for valid valuesDan McClain2013-03-261-1/+7
* | Adds support for concurrent indexing in PostgreSQL adapterDan McClain2013-03-251-2/+5
|/
* The sql_type method called here is fromRafael Mendonça França2013-03-251-1/+1
* Custom index type support with :using.doabit2013-03-242-3/+10
* add uuid primary key supportAaron Patterson2013-03-222-3/+4
* separate primary key from column typeAaron Patterson2013-03-221-10/+11
* push the mysql add_column up to the abstract adapterAaron Patterson2013-03-221-1/+3
* allow multiple add columnsAaron Patterson2013-03-221-4/+4
* push alter table add column sql in to the schema modification visitorAaron Patterson2013-03-222-9/+30
* there is no reason to check for an already defined columnAaron Patterson2013-03-221-1/+1
* push column initialization down to the factory methodAaron Patterson2013-03-221-13/+13
* @columns list is no longer necessaryAaron Patterson2013-03-221-8/+4
* keep ivars private, do not manipulate them outside their owner objectAaron Patterson2013-03-221-0/+4
* factory methods should not alter object stateAaron Patterson2013-03-221-5/+7
* push SQL generation inside the schema creation objectAaron Patterson2013-03-222-9/+9
* mostly decouple TableDefinition from the database connectionAaron Patterson2013-03-222-4/+4
* remove to_sql from TableDefinitionAaron Patterson2013-03-222-9/+1
* decouple column definition from the database connectionAaron Patterson2013-03-221-6/+6
* remove knowledge of SQL from the column definition objectAaron Patterson2013-03-221-21/+2
* use `connect_poll` on pg so that reaping does not hurt the connectionAaron Patterson2013-03-201-1/+3
* Revert "default the reaping frequency to 10 seconds"Aaron Patterson2013-03-201-1/+1
* fix typos in AR. lots of them.Vipul A M2013-03-192-2/+2
* Refactored to reuse methodAnupam Choudhury2013-03-151-2/+2
* ask column if it is a pkAaron Patterson2013-03-141-1/+5
* clean up pk delclaration in `create_table`Aaron Patterson2013-03-141-1/+8
* you can provide uuid_generate_v4 as the default value for uuid columnsAaron Patterson2013-03-141-1/+2
* pg is the only adapter that supports the xml type, so push the method downAaron Patterson2013-03-141-9/+0
* Apparently people were mutating this array. :'(Aaron Patterson2013-03-141-3/+3
* hashes are ordered, so just use the columns_hash ivarAaron Patterson2013-03-141-3/+3
* use the method so we do not depend on internal ivarsAaron Patterson2013-03-141-1/+1
* extract factory method and push common code up to abstract adapterAaron Patterson2013-03-141-2/+5
* Fix typo [ci skip]Carlos Antonio da Silva2013-03-111-1/+1
* promotes change_column_null to the migrations APIXavier Noria2013-03-111-0/+20