You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using `add_column`, the definition methods for `ksuid` and
`ksuid_binary` are not used like when using `table.ksuid` since
`add_column` creates the column directly.
This change makes it so any column definition can handle both `ksuid`
and `ksuid_binary` correctly by monkey-patching the method that creates
the column definitions.
Copy file name to clipboardExpand all lines: activerecord-ksuid/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
- Using a `ksuid` or `ksuid_binary` type with `add_column` in migrations will now work correctly without throwing an error about an unknown column type.
0 commit comments