aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix `change_column` to drop default with `null: false`Ryuta Kamizono2017-02-261-1/+1
* Should keep the primary key column orderRyuta Kamizono2017-02-141-0/+1
* Simplify and optimize Postgres query for primary_keys()Jordan Lewis2017-02-131-10/+10
* 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-1/+1
* Revert "Simplify and speed up Postgres query for primary_keys"Ryuta Kamizono2017-02-101-8/+10
* Simplify and speed up Postgres query for primary_keysJordan Lewis2017-02-091-10/+8
* Refactor `ColumnDefinition` to contain `options` hashRyuta Kamizono2017-02-091-20/+4
* Deprecate passing `name` to `indexes` like `tables`Ryuta Kamizono2017-01-041-1/+7
* `#tables` and `#table_exists?` and returns only tables and not viewsRafael Mendonça França2016-12-291-20/+22
* Remove deprecated `name` argument from `#tables`Rafael Mendonça França2016-12-291-7/+1
* Refactor column initialization into `new_column_from_field`Kir Shatrov2016-11-111-15/+17
* Quote table name properlyRyuta Kamizono2016-10-141-8/+8
* Fix table comment dumpingRyuta Kamizono2016-10-111-1/+3
* Fix Remaining Case-In-Assignment Statement FormattingAlex Kitchens2016-09-061-25/+26
* fixes remaining RuboCop issues [Vipul A M, Xavier Noria]Xavier Noria2016-09-011-2/+2
* Add three new rubocop rulesRafael Mendonça França2016-08-161-1/+1
* applies remaining conventions across the projectXavier Noria2016-08-061-34/+34
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-9/+9
* applies new string literal convention in activerecord/libXavier Noria2016-08-061-48/+48
* Merge pull request #25340 from kamipo/prevent_table_comment_queryRafael França2016-07-281-0/+4
|\
| * Prevent `table_comment` query if a table doesn't have a commentRyuta Kamizono2016-06-101-0/+4
* | Refactored method `ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaStatem...bogdanvlviv2016-07-171-3/+3
* | Merge pull request #25307 from kamipo/extract_foreign_key_action_from_informa...Eileen M. Uchitelle2016-07-011-1/+1
|\ \
| * | Make `foreign_keys` queries to `SCHEMA`Ryuta Kamizono2016-06-071-1/+1
| |/
* / Fix error message to talk about the scale not precision of the typeRafael Mendonça França2016-06-131-1/+1
|/
* Treat blank comments as no comment for indexesRyuta Kamizono2016-04-291-1/+1
* Add Expression Indexes and Operator Classes support for PostgreSQLRyuta Kamizono2016-04-241-15/+20
* Fix `test_blank_columns_created_in_block`Ryuta Kamizono2016-04-201-1/+1
* Database comments: switch to keyword args for new table optionsJeremy Daer2016-04-181-16/+16
* Add support for specifying comments for tables, columns, and indexes.Andrey Novikov2016-04-161-8/+43
* Pass over all Rails 5 warnings, to make sure:Vipul A M2016-04-121-2/+2
* Passing `table_name` to `Column#initialize` to avoid `instance_variable_set`Ryuta Kamizono2016-03-081-5/+3
* Initialize `column.table_name` immediately for `column.serial?` correctly wor...Ryuta Kamizono2016-03-081-2/+5
* Remove outdated comment [ci skip]Ryuta Kamizono2016-03-041-1/+0
* Handle specified schemas when removing a Postgres indexGrey Baker2015-12-181-3/+16
* Support passing the schema name prefix to `conenction.indexes`Grey Baker2015-12-171-9/+12
* Deprecate `#table_exists?`, `#tables` and passing arguments to `#talbes`yui-knk2015-11-091-1/+16
* introduce `conn.data_source_exists?` and `conn.data_sources`.Yves Senn2015-09-221-0/+11
* Merge pull request #21609 from kamipo/do_not_dump_view_as_tableJeremy Daer2015-09-191-0/+24
|\
| * Add `#views` and `#view_exists?` methods on connection adaptersRyuta Kamizono2015-09-131-0/+24
* | Correctly dump composite primary keyRyuta Kamizono2015-09-201-11/+13
|/
* Fix test failures from premature merge of #21317Matthew Draper2015-09-071-4/+8
* Support dropping indexes concurrently in PostgresGrey Baker2015-09-051-2/+9
* pg, `create_schema`, `drop_schema` and `rename_table` quote schema name.Yves Senn2015-08-281-3/+3
* pg docs, `connection.tables` does not use the `name` argument.Yves Senn2015-08-281-1/+1
* PostgreSQL, add `:if_exists` to `#drop_schema`.Yves Senn2015-08-281-2/+2
* Add reversible syntax for change_column_defaultPrem Sichanugrist2015-06-261-1/+2
* Avoid the heredoc in one line queries and simple queriesRyuta Kamizono2015-05-191-20/+5
* :nodoc: postgresql add_columnTony Miller2015-05-131-3/+1