ActiveRecord is a Ruby library that serves as an object-relational-mapper (ORM). ORMs allow us to use a language different than SQL to perform CRUD on our data. ActiveRecord translates Ruby code into SQL and also creates Ruby objects from database rows.
ActiveRecord is a part of Rails and is used in the model layer. It allows us to use Ruby to manipulate objects without worrying about how those objects are persisted.
By the end of this, developers should be able to:
- Explain the value of an ORM in developing an application.
- Name model files and classes according to Rails conventions.
- Reference basic CRUD operations in ActiveRecord using the Rails documentation.
- Explain the role of migrations.
- Reference documentation for writing migrations.
- Explain the role of seed data.
- Fork and clone this repository.
- Change into the new directory.
- Create and checkout a new branch, named
response
. - Follow the directions given in
study.md
. - When finished, push to your fork and submit a pull request.
You may wish to refer to FAQs related to forking, cloning, and pull requests.
- All content is licensed under a CCBYNCSA 4.0 license.
- All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.