List of Rails Model Types

前端 未结 2 748
长发绾君心
长发绾君心 2020-12-12 09:47

Does someone have a complete list of model types that be specified when generating a model scaffolding

e.g.

foo:string 
bar:text 
baz:boolean
         


        
2条回答
  •  既然无缘
    2020-12-12 10:09

    The attributes are SQL types, hence the following are supported:

    • :binary
    • :boolean
    • :date
    • :datetime
    • :decimal
    • :float
    • :integer
    • :primary_key
    • :string
    • :text
    • :time
    • :timestamp

    These are documented under column in the Active Record API.

提交回复
热议问题