1. 07 6月, 2014 1 次提交
  2. 04 6月, 2014 1 次提交
    • S
      Keep column defaults in type cast form · ed559d4b
      Sean Griffin 提交于
      The contract of `_field_changed?` assumes that the old value is always
      type cast. That is not the case for the value in `Column#default` as
      things are today. It appears there are other public methods that
      assume that `Column#default` is type cast, as well. The reason for this
      change originally was because the value gets put into `@raw_attributes`
      in initialize. This reverts to the old behavior on `Column`, and updates
      `initialize` to make sure that the values are in the right format.
      ed559d4b
  3. 03 6月, 2014 1 次提交
  4. 31 5月, 2014 1 次提交
  5. 30 5月, 2014 2 次提交
  6. 29 5月, 2014 3 次提交
  7. 28 5月, 2014 2 次提交
  8. 27 5月, 2014 2 次提交
    • S
      Deprecate decimal columns being automatically treated as integers · 6b46106d
      Sean Griffin 提交于
      With ActiveRecord::Properties, we now have a reasonable path for users
      to continue to keep this behavior if they want it. This is an edge case
      that has added a lot of complexity to the code base.
      6b46106d
    • S
      Add a public API to allow users to specify column types · 65c33009
      Sean Griffin 提交于
      As a result of all of the refactoring that's been done, it's now
      possible for us to define a public API to allow users to specify
      behavior. This is an initial implementation so that I can work off of it
      in smaller pieces for additional features/refactorings.
      
      The current behavior will continue to stay the same, though I'd like to
      refactor towards the automatic schema detection being built off of this
      API, and add the ability to opt out of automatic schema detection.
      
      Use cases:
      
      - We can deprecate a lot of the edge cases around types, now that there
        is an alternate path for users who wish to maintain the same behavior.
      - I intend to refactor serialized columns to be built on top of this
        API.
      - Gem and library maintainers are able to interact with `ActiveRecord`
        at a slightly lower level in a more stable way.
      - Interesting ability to reverse the work flow of adding to the schema.
        Model can become the single source of truth for the structure. We can
        compare that to what the database says the schema is, diff them, and
        generate a migration.
      65c33009