diff -r 7e311ee8b5b0 -r 33e44293b0eb entities/test/data/schema.py --- a/entities/test/data/schema.py Fri May 15 18:06:03 2015 +0200 +++ b/entities/test/data/schema.py Wed Apr 15 22:48:20 2015 +0200 @@ -17,10 +17,11 @@ # with CubicWeb. If not, see . """entities tests schema""" -from yams.buildobjs import EntityType, String, RichString +from yams.buildobjs import EntityType, String, RichString, Int from cubicweb.schema import make_workflowable class Company(EntityType): + order = Int() name = String() description = RichString()