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?

More than 3 years have passed since last update.

【Rails】カラムの追加方法とカラム型のまとめ

Last updated at Posted at 2021-07-01

#対象者

カラムの追加方法に関して知りたい方

#手順目次
1.コマンドの入力をする

#実際の手順と実例
###1.コマンドの入力

以下のコマンドを入力

rails g migration Addカラム名Toテーブル名 カラム名:型名

実例を上げると、

Usersというテーブルでtitleというカラムを追加したいと考えた時は

rails g migration AddTitleToUsers title:string

と入力します。
テーブル名はschema.rbを確認しましょう。
カラム追加後のrails db:migrateでデータベースに反映するのを忘れずに!

以下カラム型まとめです!
データ型  種類
integer 数値(整数)
decimal 数値(精度の高い小数)
float 数値(浮動小数)
string 文字(短い文字列)255文字まで
text 文字(長い文字列)
date 日付
datetime 日時
time 時刻
timestamp タイムスタンプ
binary バイナリ
boolean 真偽

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?