server/test/datacomputed/schema.py
changeset 9969 0f64ef873f7a
parent 9964 f4a3ee05cf9d
child 9970 671bbfed459b
--- a/server/test/datacomputed/schema.py	Tue Sep 16 15:28:35 2014 +0200
+++ b/server/test/datacomputed/schema.py	Thu Aug 28 18:31:18 2014 +0200
@@ -16,7 +16,7 @@
 # You should have received a copy of the GNU Lesser General Public License along
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
 
-from yams.buildobjs import EntityType, RelationDefinition, ComputedRelation
+from yams.buildobjs import EntityType, RelationDefinition, ComputedRelation, Int
 
 
 class Employee(EntityType):
@@ -36,9 +36,8 @@
 class Company(EntityType):
     pass
 
-
 class Note(EntityType):
-    pass
+    note = Int()
 
 
 class concerns(RelationDefinition):