3
2

More than 3 years have passed since last update.

rails-備忘録:データ型

Posted at

豆知識の備忘録です。

データ型

基本データベース作成にはデータ型を指定します。

種類
 string : 名前、電話番号など短い文字列
 text : コメントなどかなり長い文字列
 integer: 数字など(小数点なし)
など多用しています。

他にも
float 浮動小数点数型
decimal 固定長整数型
datetime 日時
timestamp 更新時間
time 時刻
date 日付
binary バイナリ文字列型
boolean 真偽値
references 他のテーブルへの外部キーの定義、_id が付いた整数
があります。

3
2
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
3
2