aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
Commit message (Expand)AuthorAgeFilesLines
* Migrations will raise an exception if there are multiple column definitions (...Federico Martinez2018-06-011-2/+6
* Remove :nodoc: from the methods which is added the doc [ci skip]Ryuta Kamizono2018-05-151-4/+4
* Add available transformations to docs [ci skip]wata_mac2018-05-131-0/+3
* Move fk_ignore_pattern from config.active_record to SchemaDumperDavid Stosik2018-03-221-1/+1
* Expose foreign key name ignore pattern in configurationDavid Stosik2018-03-191-0/+4
* Rails 6 requires Ruby 2.3+Jeremy Daer2018-02-171-6/+1
* Emulate JSON types for SQLite3 adapter (#29664)Ryuta Kamizono2017-12-031-0/+1
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-031-5/+14
* Add support for invalid foreign keys in PostgresTravis Hunter2017-12-011-0/+5
* Add support for PostgreSQL operator classes to add_indexGreg Navis2017-11-301-1/+3
* Extract `integer_like_primary_key_type` to ease to handle it for adaptersRyuta Kamizono2017-09-251-0/+7
* Move integer-like primary key normalization to `new_column_definition`Ryuta Kamizono2017-09-231-0/+4
* `add_reference` should respect column position for both reference id and type...Ryuta Kamizono2017-09-011-1/+1
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Both reference id and type should be `NOT NULL` if `null: false` is specifiedRyuta Kamizono2017-05-191-1/+1
* Fix the doc on the `IndexDefinition` [ci skip]Ryuta Kamizono2017-04-171-1/+1
* Refactor `indexes` things in connection adaptersRyuta Kamizono2017-04-161-1/+26
* Don't share `options` with a reference type columnRyuta Kamizono2017-03-041-7/+3
* Refactor `ColumnDefinition` to contain `options` hashRyuta Kamizono2017-02-091-20/+20
* `primary_key` and `references` columns should be identical typeRyuta Kamizono2017-02-071-6/+4
* Virtual/generated column support for MySQL 5.7.5+ and MariaDB 5.2.0+Ryuta Kamizono2017-02-011-1/+3
* class Foo < Struct.new(:x) creates an extra unneeded anonymous classAkira Matsuda2017-01-131-10/+6
* Describe what we are protectingAkira Matsuda2016-12-231-0/+2
* Change MySQL and Postgresql to use Bigint primary keysJon McCartie2016-12-051-1/+1
* Fix indentation of code examplesOrhan Toy2016-10-191-4/+4
* Added nil case handling to allow rollback migration in case oftravis.h.oneill@gmail.com2016-08-171-1/+1
* Merge pull request #26151 from kamipo/avoid_to_allow_unused_splat_argsRafael França2016-08-161-3/+1
|\
| * Avoid to allow unused splat args for `t.timestamps` in `create_table`Ryuta Kamizono2016-08-141-3/+1
* | Merge pull request #26019 from agrobbin/schema-load-unique-column-indicesRafael França2016-08-161-2/+2
|\ \ | |/ |/|
| * support multiple indexes on the same column when loading the schemaAlex Robbin2016-08-021-2/+2
* | applies remaining conventions across the projectXavier Noria2016-08-061-1/+0
* | normalizes indentation and whitespace across the projectXavier Noria2016-08-061-41/+41
* | applies new string literal convention in activerecord/libXavier Noria2016-08-061-1/+1
|/
* Fix failing testsSean Griffin2016-06-021-4/+5
* `foreign_key` respects `table_name_prefix` and `table_name_suffix`Ryuta Kamizono2016-04-191-0/+3
* Database comments: switch to keyword args for new table optionsJeremy Daer2016-04-181-1/+1
* Add support for specifying comments for tables, columns, and indexes.Andrey Novikov2016-04-161-4/+6
* Let t.foreign_key use the same `to_table` twiceGeorge Millo2016-02-151-2/+2
* Added numeric helper into migrations.Mehmet Emin İNAÇ2016-02-071-0/+2
* Pare back default `index` option for the migration generatorPrathamesh Sonpatki2016-01-241-1/+1
* Use a real migration version number in docsMatthew Draper2015-12-151-1/+1
* Use a deliberately-invalid migration version in all doc examplesMatthew Draper2015-12-151-1/+1
* Not passing `native_database_types` to `TableDefinition`Ryuta Kamizono2015-11-081-12/+3
* Remove incorrect commentsAndrew White2015-11-041-4/+0
* Extract native getter to attr_reader.jbranchaud2015-10-211-5/+1
* move documentation of column options to `add_column`. Closes #20400.Yves Senn2015-10-211-73/+6
* applies new doc guidelines to Active Record.Yves Senn2015-10-141-21/+22
* `:to_table` when adding a fk through `add_reference`.Yves Senn2015-10-131-3/+9