I used an annotate gem to annotate all my models, so that the schema of each model is printed in my model file in comments.
E.g:
# == Schema Information
# Schema version: 20110131093541
#
# Table name: assignments
#
# id :integer not null, primary key
# user_id :integer
# role_id :integer
# created_at :datetime
# updated_at :datetime
#
class Assignment < ActiveRecord::Base
belongs_to :role
belongs_to :user
end
I believe there are actually at least 2 gems that do this for Rails - which is what I was using for the above project.
Is there any such gem for Sinatra?