> For the complete documentation index, see [llms.txt](https://certil-remy.gitbook.io/learn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://certil-remy.gitbook.io/learn/rails/untitled-2.md).

# ActiveRecord Model Rails Lab

## Objectives

1. Create a migration by hand
2. Create a model by hand
3. Build a model instance method

## Building a Model

You can find the test suite for this application in the `spec/models` directory and run them with the command: `bundle exec rspec`. This lab tests to ensure that your app can create records and that it has an instance method that can be called on the model.

## Instructions

* Create a table by hand named `students` that has the columns: `first_name` and `last_name` – this should be accomplished by creating a new database migration
* Create a model for the students' table that inherits from ActiveRecord::Base
* Implement a `to_s` instance method in the model that will return the concatenated first and last names for students. For example: `first_name: "Daenerys", last_name: "Targaryen" => "Daenerys Targaryen"`

Clone repo Here: <https://github.com/learn-co-curriculum/rails-activerecord-model-rails-lab>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://certil-remy.gitbook.io/learn/rails/untitled-2.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
