Comment 4 for bug 162528

Revision history for this message
Raphaƫl Saint-Pierre (rsaintpi) wrote :

(answering on S3ym0ur's behalf)
Yes, it is indeed.

The class mapped to the results table looks like:
class Result(object):
   __storm_table__ = "results"
   id = Int(primary=True)
   test = Int()
   test_ref = Reference(test,Test.serial_no)
   run = Int()
   run_ref = Reference(run,Run.id)
   run_description_proxy = Proxy(run_ref, Run.description)
   platform = Int()
   platform_ref = Reference(platform,Platform.id)
   platform_name_proxy = Proxy(platform_ref, Platform.name)
   time = Float()