diff -r 671bbfed459b -r 5e44dd9dde6b server/test/datacomputed/migratedapp/schema.py --- a/server/test/datacomputed/migratedapp/schema.py Tue Jul 22 11:00:21 2014 +0200 +++ b/server/test/datacomputed/migratedapp/schema.py Thu Aug 28 17:41:34 2014 +0200 @@ -40,10 +40,12 @@ class Company(EntityType): score = Float(formula='Any AVG(NN) WHERE X employees E, N concerns E, N note NN') + score100 = Float(formula='Any AVG(NN) WHERE X employees E, N concerns E, N note100 NN') class Note(EntityType): note = Int() + note100 = Int(formula='Any N*100 WHERE X note N') class concerns(RelationDefinition):