aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* :nodoc: rename_column in postgresql/schema_statements.rbTony Miller2015-05-081-1/+1
* Use `select_value` for avoid `ActiveRecord::Result` instance creatingRyuta Kamizono2015-05-051-21/+16
* PostgreSQL: `:collation` support for string and text columnsRyuta Kamizono2015-05-041-2/+12
* Move the collation handling code from the MySQL adapter to common classesRyuta Kamizono2015-05-041-2/+2
* `:nodoc:` postgresql's change_columnTony Miller2015-05-031-2/+1
* :nodoc: change_column_null in the implmenting adaptersTony Miller2015-05-031-1/+1
* Added documentation for PostGreSQL database_statements [ci skip]Prathamesh Sonpatki2015-04-301-0/+3
* No need to document drop_table in the PostgreSQLAdapterRafael Mendonça França2015-04-061-9/+1
* change the explanation of :if_exists option [ci skip]Mehmet Emin İNAÇ2015-04-061-1/+1
* drop_table method documentation for mysql and postgresql adapters [ci skip]Mehmet Emin İNAÇ2015-04-061-0/+8
* Make method as nodoc since we are already docummenting at AbstractAdapterRafael Mendonça França2015-03-311-1/+1
* PostgreSQL, Fix OID based type casts in C for primitive types.Lars Kanis2015-03-251-3/+3
* [ci skip] Fix a typo for PostgreSQL text limit, GB instead of Gb.Juanito Fatas2015-03-031-2/+2
* Allow `:precision` option for time type columnsRyuta Kamizono2015-02-201-6/+0
* Handle array option in `type_to_sql`Ryuta Kamizono2015-02-191-19/+16
* Should handle array option for `:cast_as`Ryuta Kamizono2015-02-191-4/+8
* Revert "Allow `:precision` option for time type columns"Sean Griffin2015-02-171-0/+7
* Allow `:precision` option for time type columnsRyuta Kamizono2015-02-121-7/+0
* Refactor `quote_default_expression`Ryuta Kamizono2015-02-111-10/+2
* An array type is a part of `sql_type`Ryuta Kamizono2015-02-081-18/+3
* rm `Column#cast_type`Sean Griffin2015-02-031-5/+17
* Remove most uses of `Column#cast_type`Sean Griffin2015-01-301-5/+7
* Add an `:if_exists` option to `drop_table`Stefan Kanev2015-01-191-1/+1
* Extract the index length validation to a auxiliar methodRafael Mendonça França2014-12-301-3/+2
* Ensures that primary_key method will return nil when multi-pkArthur Neves2014-12-301-4/+4
* Support for any type primary key.Ryuta Kamizono2014-12-281-9/+0
* `force: :cascade` to recreate tables referenced by foreign-keys.Yves Senn2014-12-191-0/+4
* Merge pull request #17799 from kamipo/refactor_add_column_optionsRafael Mendonça França2014-11-281-4/+12
|\
| * Rename to `quote_default_expression` from `quote_value`Ryuta Kamizono2014-11-281-1/+1
| * Refactor `add_column_options!`, to move the quoting of default value for :uui...Ryuta Kamizono2014-11-281-4/+12
* | Refactor `SchemaCreation#visit_AddColumn`Ryuta Kamizono2014-11-271-6/+0
|/
* allow types to be passed in for USING castsAaron Patterson2014-11-241-0/+3
* allow the "USING" statement to be specified on change column callsAaron Patterson2014-11-241-1/+3
* Rename the primary key index when renaming a table in pgSean Griffin2014-11-221-0/+3
* raise a better exception for renaming long indexesAaron Patterson2014-11-201-0/+3
* remove unused and untested APIAaron Patterson2014-10-311-6/+2
* fix set_pk_sequence and add a test for it.Aaron Patterson2014-10-311-1/+1