ActiveRecord::Schema.define do create_table :hot_models, :force => true do |dr| dr.column :name, :string dr.column :created_at, :timestamp dr.column :hotness_level, :integer dr.column :hotness_expired_at, :datetime dr.column :hotness_at, :datetime end create_table :hot_model_modified, :force => true do |dr| dr.column :name, :string dr.column :created_at, :timestamp dr.column :hotness_level, :integer dr.column :hotness_expired_at, :datetime dr.column :hotness_at, :datetime end end