aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Improve `create_table force: true`Ryuta Kamizono2017-02-201-2/+2
* Merge pull request #26655 from kamipo/fix_remove_expression_indexRafael França2017-02-131-12/+16
|\
| * Fix `remove_index` to be able to remove expression indexesRyuta Kamizono2016-12-251-12/+16
* | Deprecate passing `default` to `index_name_exists?`Ryuta Kamizono2017-02-131-0/+5
* | The `default` arg of `index_name_exists?` makes to optionalRyuta Kamizono2017-02-131-6/+2
* | Schema dumping support for PostgreSQL interval typeRyuta Kamizono2017-02-121-1/+1
* | Refactor `ColumnDefinition` to contain `options` hashRyuta Kamizono2017-02-091-1/+1
* | `primary_key` and `references` columns should be identical typeRyuta Kamizono2017-02-071-2/+2
* | Deprecate `ColumnDumper#migration_keys`Ryuta Kamizono2017-02-071-1/+4
* | Deprecate `initialize_schema_migrations_table` and `initialize_internal_metad...Ryuta Kamizono2017-01-201-4/+4
* | Revert "Merge pull request #27718 from kamipo/remove_internal_public_methods"Matthew Draper2017-01-201-0/+10
* | Remove `initialize_schema_migrations_table` and `initialize_internal_metadata...Ryuta Kamizono2017-01-181-10/+0
* | Deprecate passing `name` to `indexes` like `tables`Ryuta Kamizono2017-01-041-1/+3
* | Merge pull request #27441 from koic/quoted_insert_version_sqlKasper Timm Hansen2016-12-311-4/+4
|\ \
| * | Add a quote to an SQL insert statement of schema migrationKoichi ITO2016-12-231-4/+4
* | | Remove deprecated `name` argument from `#tables`Rafael Mendonça França2016-12-291-1/+1
* | | Fix Rubocop violations and fix documentation visibilityRafael Mendonça França2016-12-281-6/+6
| |/ |/|
* | Privatize unneededly protected methods in Active RecordAkira Matsuda2016-12-241-8/+7
* | No need to nodoc private methodsAkira Matsuda2016-12-241-3/+3
|/
* Merge pull request #26687 from kamipo/fix_add_index_to_normalize_optionsMatthew Draper2016-12-061-0/+1
|\
| * Fix `add_index` to normalize column names and optionsRyuta Kamizono2016-10-031-1/+2
* | Don't try to run multiple insert queries at onceSean Griffin2016-12-051-5/+9
* | Merge pull request #26688 from kamipo/remove_respond_to_indexesKasper Timm Hansen2016-10-281-4/+0
|\ \
| * | Remove unnecessary `respond_to?(:indexes)` checkingRyuta Kamizono2016-10-031-4/+0
| |/
* | Use Regexp#match? rather than Regexp#===Ryuta Kamizono2016-10-261-1/+1
* | `name` is not a column optionRyuta Kamizono2016-10-101-1/+1
* | Dump index options to pretty formatRyuta Kamizono2016-10-101-1/+1
* | Prevent to create blank commentRyuta Kamizono2016-10-081-2/+2
|/
* fix typo in `add_column` doc [ci skip]yuuji.yaginuma2016-09-161-1/+1
* fixes remaining RuboCop issues [Vipul A M, Xavier Noria]Xavier Noria2016-09-011-2/+2
* Added nil case handling to allow rollback migration in case oftravis.h.oneill@gmail.com2016-08-171-1/+2
* Add array column documentationoss922016-08-161-0/+4
* Merge pull request #26155 from kamipo/refactor_quoted_columns_for_indexRafael Mendonça França2016-08-161-13/+16
|\
| * Refactor `quoted_columns_for_index` by extracted `add_options_for_index_columns`Ryuta Kamizono2016-08-141-13/+16
* | Merge pull request #26019 from agrobbin/schema-load-unique-column-indicesRafael França2016-08-161-1/+1
|\ \
| * | support multiple indexes on the same column when loading the schemaAlex Robbin2016-08-021-1/+1
* | | Add three new rubocop rulesRafael Mendonça França2016-08-161-10/+10
| |/ |/|
* | Fix a NoMethodError schema_statements.rbGenadi Samokovarov2016-08-101-1/+1
* | normalizes indentation and whitespace across the projectXavier Noria2016-08-061-32/+32
* | modernizes hash syntax in activerecordXavier Noria2016-08-061-1/+1
* | applies new string literal convention in activerecord/libXavier Noria2016-08-061-9/+9
* | Merge branch 'master' of github.com:rails/docrailsVijay Dev2016-08-021-1/+1
|\ \ | |/ |/|
| * Fix documentation of `index` option for the `add_reference` method [ci skip]Prathamesh Sonpatki2016-07-161-1/+1
* | Merge pull request #25578 from kamipo/move_warning_about_composite_primary_ke...Rafael França2016-07-201-8/+3
|\ \
| * | Move the warning about composite primary key to `AttributeMethods::PrimaryKey`Ryuta Kamizono2016-07-021-8/+3
* | | Add newline between each migration in `structure.sql`Grey Baker2016-07-141-2/+2
| |/ |/|
* | [ci skip] Update documentation in AR SchemaStatementsAlex Kitchens2016-07-071-12/+12
|/
* Reuse existing validate_index_length! methodPrathamesh Sonpatki2016-06-091-7/+7
* Respect options passed to `foreign_key` when reverting `add_reference`Sean Griffin2016-05-311-4/+9
* Add Expression Indexes and Operator Classes support for PostgreSQLRyuta Kamizono2016-04-241-3/+17