LoginSignup
0
0

More than 3 years have passed since last update.

モデルの作成手順

ターミナル
rails g model モデル名

マイグレーションファイルが作成される

マイグレーションファイルとは.....
モデル内のテーブルを設計することができるファイル
例)モデル内のカラム名の変更

def made
  create_table :posts do |t| #Postテーブルを作成する
      t.text :content      #t.型の名前 :カラム名
      t.timestamps           #Railsが独自に用意している特別なもの
  end
end

マイグレーションファイル記載後、データベースに記載内容を反映させる

rails db:migrate 

テーブルに記載事項が追加さてます。

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