声明架构 声明您的Rails / active_record模型架构,并为您生成数据库迁移! 例子 创建一个模型并在一个fields do ... end声明您的模式fields do ... end class Company < ActiveRecord :: Base fields do company_name :string , limit : 100 ticker_symbol :string , limit : 4 , null : true , index : true , unique : true employee_count :integer comments :text timestamps end belongs_to :industry end 然后生成迁移: $ rails generate decla