0.0
No commit activity in last 3 years
No release in over 3 years
Изменение класса у STI модели
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

StiFriendly

Дано: Table id: 1, type: 'OldSubclass'

При обновлении STI модели, обновляемая строка идентифицируется не только по её id, но ещё и по её классу. При обновлении типа (класса) у записи с такими атрибутами {id: 1, typе 'OldSublclass'} на 'NewSubclass' рельсы сделают следующий запрос:

UPDATE tables SET type='NewSubclass' WHERE type IN 'NewSubclass' AND id=1

Проблема: До обновления в базе ещё нет записи с id=1 и type='NewSubclass'.

Installation

Add this line to your application's Gemfile:

gem 'sti_friendly'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sti_friendly

Setup

module Offers
  class Custom < ActiveRecord::Base
    include StiFriendly
  end
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write code and tests
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request