aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #16231 from Envek/type_in_referencesYves Senn2014-07-221-2/+9
|\
| * Allow to specify a type for foreign key column in migrationsAndrey Novikov2014-07-221-1/+2
|/
* fk: add docsYves Senn2014-06-261-0/+58
* fk: review corrections: indent, visibility, syntax, wording.Yves Senn2014-06-261-8/+9
* fk: use random digest namesYves Senn2014-06-261-8/+12
* fk: `add/remove_foreign_key` are noop for adapters that don't support fkYves Senn2014-06-261-0/+4
* fk: raise when identifiers are longer than `allowed_index_name_length`.Yves Senn2014-06-261-1/+5
* fk: support for on_updateYves Senn2014-06-261-1/+2
* fk: rename `dependent` to `on_delete`Yves Senn2014-06-261-1/+1
* fk: infere column name from table names.Yves Senn2014-06-261-4/+14
* fk: support dependent option (:delete, :nullify and :restrict).Yves Senn2014-06-261-1/+2
* fk: `:primary_key` option for non-standard pk's.Yves Senn2014-06-261-1/+3
* fk: generalize using `AlterTable` and `SchemaCreation`.Yves Senn2014-06-261-7/+30
* fk: `foreign_keys`, `add_foreign_key` and `remove_foreign_key` for MySQLYves Senn2014-06-261-0/+7
* /mysql/i -> MySQL, Spell correct in continuation to #15555Akshay Vishnoi2014-06-141-1/+1
* Convert column name to string only onceKuldeep Aggarwal2014-05-041-1/+2
* Don't use send when we own the methodRafael Mendonça França2014-03-261-34/+34
* Invert the conditionals to make easier to readRafael Mendonça França2014-03-261-4/+4
* Fixes bugs for using indexes in CREATE TABLE by adding checks for table exist...Steve Rice2014-03-251-1/+1
* create indexes inline in CREATE TABLE for MySQLCody Cutrer2014-03-251-11/+10
* Add missing parantheses in index_exists?Yannick Schutz2014-02-251-1/+1
* docs, AR already auto-detects primary keys. Closes #13946. [ci skip]Yves Senn2014-02-051-3/+3
* Make change_table use object of current database adapterNishant Modak2014-01-071-5/+5
* Fix missing closing rdoc tag [ci skip]Carlos Antonio da Silva2013-12-161-1/+1
* support creating temporary tables from queriesCody Cutrer2013-12-141-10/+25
* `connection.type_to_sql` returns a `String` for unmapped types.Yves Senn2013-12-031-1/+1
* `rename_index`: add the new index before removing the old one.Yves Senn2013-11-261-2/+2
* Removed deprecated method `columns_for_remove`Neeraj Singh2013-07-031-6/+0
* Remove deprecated SchemaStatements#distinctFrancesco Rodriguez2013-07-021-9/+0
* 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-131-11/+0
|\
| * Moving add_column_options! up to SchemaCreationjeran2013-06-121-11/+0
* | 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
* | Fix that #exists? can produce invalid SQL: "SELECT DISTINCT DISTINCT"Ben Woosley2013-05-101-3/+11
* | 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-271-1/+14
* 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
|/
* Custom index type support with :using.doabit2013-03-241-2/+9
* add uuid primary key supportAaron Patterson2013-03-221-1/+1
* push alter table add column sql in to the schema modification visitorAaron Patterson2013-03-221-3/+7
* push SQL generation inside the schema creation objectAaron Patterson2013-03-221-8/+4
* mostly decouple TableDefinition from the database connectionAaron Patterson2013-03-221-1/+1
* remove to_sql from TableDefinitionAaron Patterson2013-03-221-1/+1