1. 13 5月, 2015 1 次提交
  2. 08 5月, 2015 1 次提交
  3. 05 5月, 2015 1 次提交
  4. 04 5月, 2015 2 次提交
  5. 03 5月, 2015 2 次提交
  6. 30 4月, 2015 1 次提交
  7. 07 4月, 2015 2 次提交
  8. 06 4月, 2015 1 次提交
  9. 01 4月, 2015 1 次提交
  10. 25 3月, 2015 1 次提交
  11. 03 3月, 2015 1 次提交
  12. 20 2月, 2015 1 次提交
  13. 19 2月, 2015 2 次提交
  14. 18 2月, 2015 1 次提交
  15. 12 2月, 2015 1 次提交
  16. 11 2月, 2015 1 次提交
    • R
      Refactor `quote_default_expression` · bb2a7c38
      Ryuta Kamizono 提交于
      `quote_default_expression` and `quote_default_value` are almost the same
      handling for do not quote default function of `:uuid` columns. Rename
      `quote_default_value` to `quote_default_expression`, and remove
      duplicate code.
      bb2a7c38
  17. 08 2月, 2015 1 次提交
  18. 04 2月, 2015 1 次提交
    • S
      rm `Column#cast_type` · 158c7eb1
      Sean Griffin 提交于
      The type from the column is never used, except when being passed to the
      attributes API. While leaving the type on the column wasn't necessarily
      a bad thing, I worry that it's existence there implies that it is
      something which should be used.
      
      During the design and implementation process of the attributes API,
      there have been plenty of cases where getting the "right" type object
      was hard, but I had easy access to the column objects. For any
      contributor who isn't intimately familiar with the intents behind the
      type casting system, grabbing the type from the column might easily seem
      like the "correct" thing to do.
      
      As such, the goal of this change is to express that the column is not
      something that should be used for type casting. The only places that are
      "valid" (at the time of this commit) uses of acquiring a type object
      from the column are fixtures (as the YAML file is going to mirror the
      database more closely than the AR object), and looking up the type
      during schema detection to pass to the attributes API
      
      Many of the failing tests were removed, as they've been made obsolete
      over the last year. All of the PG column tests were testing nothing
      beyond polymorphism. The Mysql2 tests were duplicating the mysql tests,
      since they now share a column class.
      
      The implementation is a little hairy, and slightly verbose, but it felt
      preferable to going back to 20 constructor options for the columns. If
      you are git blaming to figure out wtf I was thinking with them, and have
      a better idea, go for it. Just don't use a type object for this.
      158c7eb1
  19. 31 1月, 2015 1 次提交
    • S
      Remove most uses of `Column#cast_type` · 155b1b7f
      Sean Griffin 提交于
      The goal is to remove the type object from the column, and remove
      columns from the type casting process entirely. The primary motivation
      for this is clarity. The connection adapter does not have sufficient
      type information, since the type we want to work with might have been
      overriden at the class level. By taking this object from the column,
      it is easy to mistakenly think that the column object which exists on
      the connection adapter is sufficient. It isn't.
      
      A concrete example of this is `serialize`. In 4.2 and earlier, `where`
      worked in a very inconsistent and confusing manner. If you passed a
      single value to `where`, it would serialize it before querying, and do
      the right thing. However, passing it as part of an array, hash, or range
      would cause it to not work. This is because it would stop using prepared
      statements, so the type casting would come from arel. Arel would have no
      choice but to get the column from the connection adapter, which would
      treat it as any other string column, and query for the wrong value.
      
      There are a handful of cases where using the column object to find the
      cast type is appropriate. These are cases where there is not actually a
      class involved, such as the migration DSL, or fixtures. For all other
      cases, the API should be designed as such that the type is provided
      before we get to the connection adapter. (For an example of this, see
      the work done to decorate the arel table object with a type caster, or
      the introduction of `QueryAttribute` to `Relation`).
      
      There are times that it is appropriate to use information from the
      column to change behavior in the connection adapter. These cases are
      when the primitive used to represent that type before it goes to the
      database does not sufficiently express what needs to happen. An example
      of this that affects every adapter is binary vs varchar, where the
      primitive used for both is a string. In this case it is appropriate to
      look at the column object to determine which quoting method to use, as
      this is something schema dependent.
      
      An example of something which would not be appropriate is to look at the
      type and see that it is a datetime, and performing string parsing when
      given a string instead of a date.  This is the type of logic that should
      live entirely on the type. The value which comes out of the type should
      be a sufficiently generic primitive that the adapter can be expected to
      know how to work with it.
      
      The one place that is still using the column for type information which
      should not be necessary is the connection adapter type caster which is
      sometimes given to the arel table when we can't find the associated
      table. This will hopefully go away in the near future.
      155b1b7f
  20. 19 1月, 2015 1 次提交
    • S
      Add an `:if_exists` option to `drop_table` · 48e99a45
      Stefan Kanev 提交于
      If set to `if_exists: true`, it generates a statement like:
      
          DROP TABLE IF EXISTS posts
      
      This syntax is supported in the popular SQL servers, that is (at least)
      SQLite, PostgreSQL, MySQL, Oracle and MS SQL Sever.
      
      Closes #16366.
      48e99a45
  21. 31 12月, 2014 2 次提交
  22. 28 12月, 2014 1 次提交
  23. 19 12月, 2014 1 次提交
  24. 28 11月, 2014 2 次提交
  25. 27 11月, 2014 1 次提交
  26. 25 11月, 2014 2 次提交
  27. 23 11月, 2014 1 次提交
  28. 21 11月, 2014 1 次提交
  29. 01 11月, 2014 3 次提交
  30. 18 9月, 2014 1 次提交
    • G
      Use #inject over #sum to build PG create DB statement · 707958b5
      Geoff Harcourt 提交于
      While investigating #16951 I found that another library's monkey-patching of
      `Enumerable` was causing the test migrations helper to break when trying to
      build the `CREATE DATABASE` statement. The prior approach used `#sum` to build
      the string from the options hash.
      
      As the code that combines the options to build the database statement is not
      user-facing, using `#inject` here instead will remove the only place where the
      database creation/migration code is dependent on ActiveSupport's monkey-patching
      of `Enumerable`.
      707958b5
  31. 17 9月, 2014 1 次提交