Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.
# == Schema Information
#
# Table name: posts
#
# id :integer not null, primary key
# body :text
# title :string
# created_at :datetime not null
# updated_at :datetime not null
#
class Post < ApplicationRecord
end