在Sinatra应用程序的模型中,是否有一些自动的方法来记录字段名称和类型,这相当于在rails中注释gem?
示例:
# == Schema Info
#
# Table name: users
#
# id :integer(11) not null, primary key
# name :string not null
# gender :string not null
# age :float
#
class User < ActiveRecord::Base
end