aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Always pass a column with a type object to quoteSean Griffin2014-06-281-0/+8
* rename sequence only if it existsAbdelkader Boudih2014-06-271-3/+3
* fk: review corrections: indent, visibility, syntax, wording.Yves Senn2014-06-261-12/+12
* fk: support for on_updateYves Senn2014-06-261-7/+12
* fk: rename `dependent` to `on_delete`Yves Senn2014-06-261-2/+2
* fk: support dependent option (:delete, :nullify and :restrict).Yves Senn2014-06-261-1/+8
* fk: generalize using `AlterTable` and `SchemaCreation`.Yves Senn2014-06-261-20/+0
* fk: `foreign_keys`, `add_foreign_key` and `remove_foreign_key` for MySQLYves Senn2014-06-261-7/+0
* fk: add `foreign_keys` for PostgreSQL adapter.Yves Senn2014-06-261-0/+24
* fk: `add_foreign_key` and `remove_foreign_key` for PostgreSQL adapter.Yves Senn2014-06-261-0/+27
* pg, support default values for enum types. Closes #7814.Yves Senn2014-05-301-1/+1
* pg, `default_sequence_name` respects schema. Closes #7516.Yves Senn2014-05-301-2/+2
* Merge pull request #11896 from nkondratyev/fix_pg_columns_for_distinctYves Senn2014-05-301-1/+1
|\
| * Fixed `columns_for_distinct` of postgresql adapterNikolay Kondratyev2013-08-151-1/+1
* | pg, `reset_pk_sequence!` respects schemas. Closes #14719.Yves Senn2014-05-301-5/+13
* | pg, `PostgreSQL::Name` to hold schema qualified names.Yves Senn2014-05-301-4/+4
* | Ensure we always use instances of the adapter specific column classSean Griffin2014-05-281-1/+5
* | remove unwanted `to_sym` call.Kuldeep Aggarwal2014-05-261-1/+1
* | Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-231-1/+3
* | Allow additional arguments to be used during type map lookupsSean Griffin2014-05-221-1/+1
* | pg, re-introduce `PostgreSQL::Utils` to unify schema/table extraction.Yves Senn2014-05-191-18/+1
* | :scissors:Rafael Mendonça França2014-05-141-1/+0
* | PostgreSQLAdapter::Utils seems to be only used from a single spot - quite red...kares2014-05-141-1/+19
* | PostgreSQL's SchemaStatements seems a could candidate for re-use (with AR-JDBC)kares2014-05-141-6/+2
* | pg, `change_column_default` accepts `[]`. Closes #11586.Yves Senn2014-05-121-0/+1
* | Handle other pk types in PostgreSQL gracefully.Patrick Robertson2014-05-121-1/+1
* | refactor, move `column_for` to `AbstractAdapter` for better reuse.Yves Senn2014-05-041-4/+0
* | Changed change_column in PG schema_statements.rb to make sure that the uuid_g...Eric Chahin2014-04-151-2/+8
* | PostgreSQL, adapter automatically reloads it's type map. Closes #14678.Yves Senn2014-04-111-3/+1
* | PostgreSQL, Support for materialized views. [Dave Lee & Yves Senn]Dave Lee2014-04-021-4/+1
* | Postgres schema: Constrain sequence search classidJosh Williams2014-03-201-0/+1
* | psql implementation of #index_name_exists?Jonathan Baudanza2014-01-161-0/+13
* | make the type_map per connection. fixes #13182Aaron Patterson2013-12-041-1/+1
* | Merge pull request #10664 from aderyabin/docpatchYves Senn2013-10-291-1/+1
|\ \ | |/ |/|
| * Fix doc in Postgres database creationAndrey Deryabin2013-06-251-1/+1
* | `change_column` for PG adapter respects `:array` option.Yves Senn2013-07-161-2/+3
|/
* Reject blank order_values within #columns_for_distinct, as the orders aren't ...Ben Woosley2013-05-101-1/+1
* Fix that #exists? can produce invalid SQL: "SELECT DISTINCT DISTINCT"Ben Woosley2013-05-101-7/+2
* Make SchemaDumper emit "id: :uuid" when appropriate. Fixes #10451.Brian Buchanan2013-05-031-1/+2
* Do not calculate values if they are not going to be usedCarlos Antonio da Silva2013-03-301-7/+9
* Add support for FULLTEXT and SPATIAL indexes using the :type flag for MySQL.Ken Mazaika2013-03-271-2/+2
* Adds support for concurrent indexing in PostgreSQL adapterDan McClain2013-03-251-6/+2
* Custom index type support with :using.doabit2013-03-241-1/+11
* add uuid primary key supportAaron Patterson2013-03-221-0/+9
* push the mysql add_column up to the abstract adapterAaron Patterson2013-03-221-10/+4
* allow multiple add columnsAaron Patterson2013-03-221-1/+1
* pull add_column_options! off the pg connection classAaron Patterson2013-03-221-0/+13
* add a pg visitor for dealing with schema modificationAaron Patterson2013-03-221-4/+21
* also rename indexes when a table or column is renamedYves Senn2013-02-201-3/+6
* Add postgresql range types supportbUg2013-01-231-8/+0