activerecord-postgresql-extensions icon indicating copy to clipboard operation
activerecord-postgresql-extensions copied to clipboard

A whole bunch of extensions the ActiveRecord PostgreSQL adapter.

Results 4 activerecord-postgresql-extensions issues
Sort by recently updated
recently updated
newest added

Creating concurrent indexes cannot be done within a transaction in PG. All AR migrations occur within a transaction. If you try, you'll get the following error `PGError: ERROR: CREATE INDEX...

Hello, I ran across an issue while upgrading to rails 4.rc1. ``` shell wrong number of arguments (1 for 4) /home/chatgris/.gem/ruby/2.0.0/gems/activerecord-4.0.0.rc1/lib/active_record/connection_adapters/abstract/schema_definitions.rb:54:in `initialize' /home/chatgris/dev/oss/activerecord-postgresql-extensions/lib/active_record/postgresql_extensions/tables.rb:180:in `initialize' /home/chatgris/dev/oss/activerecord-postgresql-extensions/lib/active_record/postgresql_extensions/tables.rb:109:in `new' /home/chatgris/dev/oss/activerecord-postgresql-extensions/lib/active_record/postgresql_extensions/tables.rb:109:in `create_table' /home/chatgris/.gem/ruby/2.0.0/gems/activerecord-4.0.0.rc1/lib/active_record/schema_migration.rb:21:in `create_table'...

While using `add_foreign_key` in a migration, I get the following error: ``` undefined method `add_column_options!' for class `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter' ``` I double-checked that I'm using the latest from the `rais-4` branch:...

When you run migrations with special constraints and references, the constraints and references are not reflected in db/schema.rb.