forked from scambra/dependent_protect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
21 lines (16 loc) · 922 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
= dependent => :protect option
Adds a new option :protect for the parameter <tt>:depends</tt> from +has_many+,
+has_one+ and +belongs_to+ methods. This option forbids destroying records with
associated records in an association created with <tt>:dependent => :protect</tt>
option, more or less like <tt>ON DELETE RESTRICT</tt> SQL statement. If you try
to destroy a record with associated records it will raise an
ActiveRecord::ReferentialIntegrityProtectionError (defined also in this
plugin).
Based on the idea and the code from [email protected] in Ruby on Rails
ticket #3837 (http://dev.rubyonrails.org/ticket/3837) and plugin from Daniel
Rodríguez Troitiño <[email protected]> in
http://svn.ruido-blanco.net/dependent_protect/
== Author
Sergio Cambra, based in a plugin from Daniel Rodríguez Troitiño
<[email protected]>, and the ideas and the code from