aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
...
* | | Don't cache queries for schema statementsRyuta Kamizono2017-06-301-21/+19
| |/ |/|
* | Use `quote` method rather than single quotes to identifiers in SQLRyuta Kamizono2017-06-291-6/+6
|/
* Support PostgreSQL 10 `pg_sequence`Yasuo Honda2017-05-301-1/+9
* `rename_table` renames primary key index nameYaw Boakye2017-05-291-4/+5
* Prevent extra `current_database` query for `encoding`/`collation`/`ctype`Ryuta Kamizono2017-05-281-3/+3
* Refactor `indexes` things in connection adaptersRyuta Kamizono2017-04-161-2/+11
* Use a query that's compatible with PostgreSQL 9.2Matthew Draper2017-04-121-7/+11
* Merge pull request #28478 from kamipo/fix_primary_keys_across_multiple_schemasAndrew White2017-03-291-9/+7
|\
| * Fix `primary_keys` across multiple schemasRyuta Kamizono2017-03-201-9/+7
* | Make internal methods to privateRyuta Kamizono2017-03-271-39/+46
|/
* Merge pull request #28068 from kamipo/refactor_data_sourcesRafael França2017-03-131-91/+55
|\
| * Prefer `USING (column_list)` for joining information_schemaRyuta Kamizono2017-02-251-3/+1
| * Extract `data_source_sql` to refactor data source statementsRyuta Kamizono2017-02-201-88/+54
* | Use `max_identifier_length` for `index_name_length` in PostgreSQL adapterRyuta Kamizono2017-02-271-4/+0
* | 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