All Versions
31
Latest Version
Avg Release Cycle
55 days
Latest Release
2926 days ago

Changelog History
Page 3

  • v1.4.0 Changes

    • ๐Ÿ‘Œ Supports jruby & mysql, thanks to @rzenha
    • ๐Ÿ’Ž Works with MRI ruby & rails 4.1.0beta3
    • โœ… Run tests against MRI 2.1.0
  • v1.3.3 Changes

    • ๐Ÿ› Bug fix, dump unique index with expression (Issue #142)
  • v1.3.2 Changes

    • Bug fix, remove_index with if_exists but no name
    • ๐Ÿš… Sort indexes alphabetically when dumping, like rails does
  • v1.3.1 Changes

    • ๐Ÿšš Regression bug fix, non-option arguemnts to remove_index
  • v1.3.0 Changes

    • ๐Ÿšš Added :if_exists option for remove_index
    • ๐ŸŽ‰ Initial jruby support (rails 3.2, postgresql), due to efforts of @donv
    • ๐Ÿš… Preliminatry groundwork for rails 4.1, due to efforts of @tovodeverett
    • ๐Ÿ› Bug fix for change_table
    • ๐Ÿ› Bug fix for schema_dump postgresql non-btree indexes
    • ๐Ÿ› Bug fix regarding expressions that cast non-string columns to strings in a lower()
  • v1.2.0 Changes

    • ๐Ÿš… Now works with rails 4, due to efforts of @tovodeverett
    • โœ… Test against MRI ruby 2.0.0, no longer test against 1.9.2
  • v1.1.2 Changes

    • ๐Ÿš… Now works with rails 3.2.13 (fixed railtie initialization)
  • v1.1.1 Changes

    • ๐Ÿš… Dependency constraint to rails 3.2.12 max, since schema_plus doesn't currently work with 3.2.13.rc2
  • v1.1.0 Changes

    • ๐Ÿ‘ Add support for drop_table :cascade => true. Note that until now, :cascade was implicitly true. So this change might break existing code that relied on the incorrect implicit cascade behavior.
    • ๐Ÿ‘ Add support for :deferrable => :initially_deferred (thanks to @bhavinkamani)
    • Works with PostGIS (thanks to @pete)
    • Bug fix: Circular Reference/Stack Level Too Deep in Column#to_json. Thanks to @robdimarco for tracking down the problem
    • Bug fix: More robust handling of foreign keys with schema namespaces
  • v1.0.1 Changes

    • README cleanups (thanks to @denispeplin)
    • Now raises ArgumentError if index has both :case_sensitive => false and an :expression
    • 0๏ธโƒฃ Now creates consistent default name for foreign key constraints
    • Bug fix: respect :length keyword for index (thanks to @teleological)
    • Bug fix: renaming table with multiple foreign key constraints (thanks to @teleological)
    • Bug fix: don't dump :case_sensitive => false for index with an expression that includes "lower(name)".
    • Bug fix: Properly dump multi-column case-insensitive indexes