All Versions
31
Latest Version
Avg Release Cycle
55 days
Latest Release
3288 days ago
Changelog History
Page 3
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