An open API service indexing awesome lists of open source software.

https://github.com/driftingruby/098-polymorphic-associations

Advancing from Single Table Inheritance, learn how Polymorphic Associations differ and tricks to simplify their usage.
https://github.com/driftingruby/098-polymorphic-associations

polymorphic-relationships ruby ruby-on-rails

Last synced: 2 months ago
JSON representation

Advancing from Single Table Inheritance, learn how Polymorphic Associations differ and tricks to simplify their usage.

Awesome Lists containing this project

README

          

# README

rails g scaffold company name website
rails g scaffold employees first_name last_name email birth_date:date
rails g model note notable:references{polymorphic} content:text