1. 07 5月, 2017 1 次提交
  2. 11 12月, 2016 1 次提交
  3. 06 12月, 2016 1 次提交
  4. 27 11月, 2016 1 次提交
  5. 26 10月, 2016 1 次提交
  6. 04 5月, 2016 1 次提交
  7. 11 3月, 2016 1 次提交
  8. 18 12月, 2015 1 次提交
  9. 18 9月, 2015 2 次提交
    • R
      Add `unsigned` types for numeric data types in MySQL · dfeb3ee7
      Ryuta Kamizono 提交于
      In the case of using `unsigned` as the type:
      
          create_table :foos do |t|
            t.unsigned_integer :unsigned_integer
            t.unsigned_bigint  :unsigned_bigint
            t.unsigned_float   :unsigned_float
            t.unsigned_decimal :unsigned_decimal, precision: 10, scale: 2
          end
      dfeb3ee7
    • R
      Add `unsigned` support for numeric data types in MySQL · f3772f72
      Ryuta Kamizono 提交于
      Example:
      
          create_table :foos do |t|
            t.integer :unsigned_integer, unsigned: true
            t.bigint  :unsigned_bigint,  unsigned: true
            t.float   :unsigned_float,   unsigned: true
            t.decimal :unsigned_decimal, unsigned: true, precision: 10, scale: 2
          end
      f3772f72
  10. 11 6月, 2015 1 次提交
  11. 17 3月, 2015 1 次提交
    • B
      Closes rails/rails#18864: Renaming transactional fixtures to transactional tests · 09658635
      Brandon Weiss 提交于
      I’m renaming all instances of `use_transcational_fixtures` to
      `use_transactional_tests` and “transactional fixtures” to
      “transactional tests”.
      
      I’m deprecating `use_transactional_fixtures=`. So anyone who is
      explicitly setting this will get a warning telling them to use
      `use_transactional_tests=` instead.
      
      I’m maintaining backwards compatibility—both forms will work.
      `use_transactional_tests` will check to see if
      `use_transactional_fixtures` is set and use that, otherwise it will use
      itself. But because `use_transactional_tests` is a class attribute
      (created with `class_attribute`) this requires a little bit of hoop
      jumping. The writer method that `class_attribute` generates defines a
      new reader method that return the value being set. Which means we can’t
      set the default of `true` using `use_transactional_tests=` as was done
      previously because that won’t take into account anyone using
      `use_transactional_fixtures`. Instead I defined the reader method
      manually and it checks `use_transactional_fixtures`. If it was set then
      it should be used, otherwise it should return the default, which is
      `true`. If someone uses `use_transactional_tests=` then it will
      overwrite the backwards-compatible method with whatever they set.
      09658635
  12. 11 12月, 2014 1 次提交