0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails】モデルについて

Last updated at Posted at 2025-04-07

記事概要

Ruby on Railsのモデルについて、まとめる

前提

  • Ruby on Railsでアプリケーションを作成している

モデルとは

処理

テーブルごとに設定されたモデルが情報を管理する
Image from Gyazo

イメージ

Image from Gyazo

MVC

データベースへのアクセスをはじめとする情報のやりとりに関する処理を行う役割

命名規則

大文字から始まる単数形
例)Post

手順

  1. rails g modelコマンドを実行し、モデルや関連ファイルを作成する
    # アプリのディレクトリに移動
    % cd ~/[アプリ名]
    
    # モデルを作成
    % rails g model [モデル名]
    
  2. VSCodeでapp/models/[モデル名].rbが生成されたことを確認する
  3. VSCodeで[モデル名].rbを、編集する

Ruby on Railsまとめ

備考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?