Skip to content
Snippets Groups Projects
user_model.py 285 B
Newer Older
from neomodel import StructuredNode, StringProperty, IntegerProperty,UniqueIdProperty, RelationshipTo
root's avatar
root committed
from uuid import uuid4

class User(StructuredNode):
root's avatar
root committed
	# uuid=UniqueIdProperty()
	uuid=StringProperty(unique_index=True, default=uuid4)
	name=StringProperty()
	surname=StringProperty()