aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #36412 from robotdana/compact_blankRafael Mendonça França2019-07-251-2/+2
|\
| * Use compact_blank throughout railsDana Sherson2019-06-051-2/+2
* | Clear schema cache when a table is created/dropped/renamedRyuta Kamizono2019-06-131-0/+3
|/
* make change_column_comment and change_table_comment invertibleYoshiyuki Kinjo2019-04-151-2/+4
* use PostgreSQL's bulk_alter_table implementationYoshiyuki Kinjo2019-04-131-25/+0
* Refactor around sql_type metadata and columnRyuta Kamizono2019-04-121-1/+1
* Merge pull request #35887 from kamipo/argument_errorRyuta Kamizono2019-04-091-3/+3
|\
| * Raise `ArgumentError` for invalid `:limit` and `:precision` like as other opt...Ryuta Kamizono2019-04-071-3/+3
* | Except `table_name` from column objectsRyuta Kamizono2019-04-081-4/+23
|/
* Cache database version in schema cacheAli Ibrahim2019-04-031-1/+1
* Allow `remove_foreign_key` with both `to_table` and `options`Ryuta Kamizono2019-03-061-2/+2
* Refactor `type_to_sql` to handle converting `limit` to `size` in itselfRyuta Kamizono2019-02-261-2/+2
* Make `t.timestamps` with precision by defaultRyuta Kamizono2019-01-261-1/+5
* Fix `t.timestamps` missing `null: false` in `change_table bulk: true`Ryuta Kamizono2019-01-261-0/+2
* Fix type casting column default in `change_column`Ryuta Kamizono2019-01-201-24/+6
* Enable `Lint/UselessAssignment` cop to avoid unused variable warnings (#34904)Ryuta Kamizono2019-01-091-2/+2
* Use squiggly heredoc to strip odd indentation in the executed SQLRyuta Kamizono2018-11-221-7/+7
* Fixing an issue when parsing an opclass by allowing indexed columnThomas Bianchini2018-11-211-1/+1
* Enable `Performance/UnfreezeString` copyuuji.yaginuma2018-09-231-2/+2
* Fix bulk change table ignores comment option on PostgreSQL.Yoshiyuki Kinjo2018-08-151-1/+5
* PostgreSQL 10 new relkind for partitioned tables (#31336)Yannick Schutz2018-07-271-2/+2
* Fix multiline expression indexes for postgresql (#31621)fatkodima2018-03-161-1/+1
* Fix `#columsn_for_distinct` of MySQL and PostgreSQLkg8m2018-02-271-1/+1
* Remove usage of strip_heredoc in the framework in favor of <<~Rafael Mendonça França2018-02-161-4/+4
* Dump correctly index nulls order for postgresqlfatkodima2018-01-281-2/+6
* Merge pull request #31773 from dinahshi/postgresql_bulk_patchMatthew Draper2018-01-241-1/+1
|\
| * Use concat to join procs arrays in bulk_change_tableDinah Shi2018-01-231-1/+1
* | Support for PostgreSQL foreign tablesfatkodima2018-01-221-1/+11
* | Enable autocorrect for `Lint/EndAlignment` copKoichi ITO2018-01-181-1/+1
|/
* Add bulk alter support for PostgreSQLDinah Shi2017-12-061-5/+36
* `change_column_default` should be executed after type changingRyuta Kamizono2017-12-031-7/+8
* Extract duplicated index column options normalization as `options_for_index_c...Ryuta Kamizono2017-12-031-0/+12
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-031-11/+5
* Merge pull request #31230 from dinahshi/postgresql_extract_sqlMatthew Draper2017-12-031-33/+53
|\
| * Extract sql fragment generators for alter table from PostgreSQL adapterDinah Shi2017-12-021-33/+53
* | Fix method name in `validate_constraint` doc [ci skip]yuuji.yaginuma2017-12-021-1/+1
* | Add support for invalid foreign keys in PostgresTravis Hunter2017-12-011-1/+43
* | Add support for PostgreSQL operator classes to add_indexGreg Navis2017-11-301-12/+20
|/
* Remove deprecated argument `name` from `#indexes`Rafael Mendonça França2017-10-231-9/+1
* Remove deprecated argument `default` from `index_name_exists?`Rafael Mendonça França2017-10-231-6/+1
* Fix longer sequence name detection for serial columns (#28339)Ryuta Kamizono2017-10-151-1/+2
* Refactor `SchemaDumper` to make it possible to adapter specific customizationRyuta Kamizono2017-08-221-0/+4
* Place `update_table_definition` consistently in `SchemaStatements`Ryuta Kamizono2017-08-211-0/+4
* Change http postgresql.org links to https [ci skip]yuuji.yaginuma2017-07-301-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
* Merge pull request #29540 from kirs/rubocop-frozen-stringMatthew Draper2017-07-021-0/+1
|\
| * Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* | Merge pull request #29506 from pat/frozen-string-literalsMatthew Draper2017-07-021-3/+3
|\ \
| * | Make ActiveRecord frozen string literal friendly.Pat Allan2017-06-201-3/+3