# File app/controllers/metarep_controller.rb, line 247
  def showTableHistory
    @table = Table.find(params[:id])
    @description_changes = Change.find(:all, :conditions => { :object_path => @table.Schema.Database.database_nm + '/' + @table.Schema.schema_nm + '/' + @table.table_nm }, :order => "date desc" )
    render :layout => 'simple'
  end