Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rails generate modelを試す #2

Open
yuiseki opened this issue Sep 24, 2019 · 0 comments
Open

rails generate modelを試す #2

yuiseki opened this issue Sep 24, 2019 · 0 comments
Assignees

Comments

@yuiseki
Copy link
Member

yuiseki commented Sep 24, 2019

手順

  1. 現実に存在する概念を考える(例:ビル)
  2. その概念の英語名・単数形を調べる(例:Building)
  3. その概念の属性を考えて英語名を調べる(例:高さ→height)
  4. その属性はどんな種類の値か考える(例:高さは数→integer)
  5. コマンドを組み立てる
  6. このissueのコメント欄でコマンドを確認する
  7. VSCodeのTerminalで実行する
  8. branch を立てて commit して push する

属性の種類

  • string : 文字列
  • text : 長い文字列
  • integer : 整数
  • float : 浮動小数
  • decimal : 精度の高い小数
  • datetime : 日時
  • timestamp : タイムスタンプ
  • time : 時間
  • date : 日付
  • binary : バイナリデータ
  • boolean : 真偽値

コマンドを組み立てる

rails generate model 概念の英語名 属性:種類 属性:種類 ... という規則でコマンドを組み立てる

例:

  • rails generate model Building name:string height:integer address:string
  • rails generate model Person name:string twitter:string mailaddr:string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants