Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sbf-dm-constraints

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sbf-dm-constraints

  • 1.4.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= dm-constraints

Plugin that adds foreign key constraints to associations. Currently supports only PostgreSQL and MySQL

All constraints are added to the underlying database, but constraining is implemented in pure ruby.

=== Constraints

  • :protect returns false on destroy if there are child records
  • :destroy deletes children if present
  • :destroy! deletes children directly without instantiating the resource, bypassing any hooks Does not support 1:1 Relationships as #destroy! is not supported on Resource in dm-master
  • :set_nil sets parent id to nil in child associations Not valid for M:M relationships as duplicate records could be created (see explanation in specs)
  • :skip Does nothing with children, results in orphaned records

By default a relationship will PROTECT its children.

=== Cardinality Notes

  • 1:1

  • Applicable constraints: [:set_nil, :skip, :protect, :destroy]

  • 1:M

  • Applicable constraints: [:set_nil, :skip, :protect, :destroy, :destroy!]

  • M:M

  • Applicable constraints: [:skip, :protect, :destroy, :destroy!]

=== Examples

1:M Example

class Post has n, :comments # equivalent to: # has n, :comments, :constraint => :protect end

M:M Example

class Article has n, :tags, :through => Resource, :constraint => :destroy end

class Tags has n, :articles, :through => Resource, :constraint => :destroy end

Intermediary constraints for relationships using :through => Resource

are automatically inherited from the M:M relationship.

1:1 Example

class User has 1, :address, :constraint => :protect end

FAQs

Package last updated on 04 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc