# File app/controllers/metarep_controller.rb, line 239
  def showSchemaHistory
    @schema = Schema.find(params[:id])
    @description_changes = Change.find(:all, :conditions => { :object_path => @schema.Database.database_nm + '/' + @schema.schema_nm, :data_changed => 'schema_desc' }, :order => "date desc" )
    @title_changes = Change.find(:all, :conditions => { :object_path => @schema.Database.database_nm + '/' + @schema.schema_nm, :data_changed => 'schema_title' }, :order => "date desc" )
    render :layout => 'simple'
  end