aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Add bigint primary key support for MySQL.Ryuta Kamizono2014-12-281-1/+2
* reduce duplication in `ConnectionAdapters::Table` docs. [ci skip]Yves Senn2014-12-271-27/+38
* Refactor a common class to reduce the duplication for `references`Sean Griffin2014-12-231-29/+84
* Add `foreign_key` as an option to `references` for `change_table`Sean Griffin2014-12-221-3/+6
* Add a `foreign_key` option to `references` while creating the tableSean Griffin2014-12-221-4/+23
* Convert `references` to kwargsSean Griffin2014-12-221-7/+17
* Failure to rollback t.timestamps when within a change_table migrationnoam2014-12-031-2/+2
* synchronize code and docs for `timestamps` and `add_timestamps`.Yves Senn2014-11-201-6/+5
* add a Table#name accessor like TableDefinition#nameCody Cutrer2014-11-101-17/+19
* docs, the abstract data type `:timestamp` was removed. See #15184 [ci skip]Yves Senn2014-11-071-2/+2
* edit pass over all warningsXavier Noria2014-10-281-4/+3
* let's warn with heredocsXavier Noria2014-10-281-5/+6
* Use type column first in multi-column indexesDerek Prior2014-10-241-1/+1
* we don't need a HWIA and a hash allocated for just one k/v pairAaron Patterson2014-10-151-5/+3
* just look up the primary key from the columns hashAaron Patterson2014-10-151-6/+1
* add table.bigint supportAaron Patterson2014-10-151-1/+1
* Merge pull request #16781 from kamipo/move_column_option_handlingYves Senn2014-09-031-1/+0
|\
| * Move column option handling to new_column_definitionRyuta Kamizono2014-09-031-1/+0
* | Add and Remove string/strip requireArthur Neves2014-09-021-1/+0
|/
* Avoid using heredoc for user warningsGodfrey Chan2014-08-281-6/+5
* Add missing AS requireArthur Neves2014-08-191-0/+1
* Change the default `null` value for timestampsSean Griffin2014-08-121-3/+21
* Merge pull request #16231 from Envek/type_in_referencesYves Senn2014-07-221-2/+16
|\
| * Allow to specify a type for foreign key column in migrationsAndrey Novikov2014-07-221-1/+8
|/
* Always pass a column with a type object to quoteSean Griffin2014-06-281-1/+1
* Add nodoc to internal class [ci skip]Rafael Mendonça França2014-06-261-1/+1
* fk: use random digest namesYves Senn2014-06-261-1/+10
* fk: support for on_updateYves Senn2014-06-261-0/+4
* fk: rename `dependent` to `on_delete`Yves Senn2014-06-261-2/+2
* fk: support dependent option (:delete, :nullify and :restrict).Yves Senn2014-06-261-0/+4
* fk: generalize using `AlterTable` and `SchemaCreation`.Yves Senn2014-06-261-0/+12
* fk: `foreign_keys`, `add_foreign_key` and `remove_foreign_key` for MySQLYves Senn2014-06-261-0/+14
* Change wording of explanation about precision & scale of decimal numbers [ci ...Prathamesh Sonpatki2014-06-041-2/+2
* Remove :timestamp column typeSean Griffin2014-05-191-0/+7
* Make `:index` in migrations work with all column typesMarc Schütz2014-05-181-6/+13
* Remove dead test code for unsupported adaptersSean Griffin2014-05-171-9/+0
* fix bug on non empty defaults for pg array columnsLuke Steensen2014-03-301-1/+1
* support creating temporary tables from queriesCody Cutrer2013-12-141-2/+3
* Remove redundant `string_to_binary` from type-castingVipul A M2013-08-091-3/+0
* Merge pull request #10425 from ranjaykrishna/push_add_column_options_to_schem...Rafael Mendonça França2013-06-131-0/+3
|\
| * Moving add_column_options! up to SchemaCreationjeran2013-06-121-0/+3
* | Fixes #10432 add_column not creating array columns in PostgreSQLAdam Anderson2013-06-041-0/+1
* | Merge pull request #10572 from nertzy/dont-modify-options-hash-in-primary-keyRafael Mendonça França2013-05-111-2/+1
* | Make references with index:true pass Hash options to add_index.Victor Costan2013-04-011-1/+1
|/
* Add support for FULLTEXT and SPATIAL indexes using the :type flag for MySQL.Ken Mazaika2013-03-271-1/+1
* Custom index type support with :using.doabit2013-03-241-1/+1
* add uuid primary key supportAaron Patterson2013-03-221-2/+3
* 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