X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/69d5189cc4fb2ca63418a0741bf744cf5fee8bc9..6371c50c3b414c0bb06a6144cd31803a1363a602:/floof/model/search.py diff --git a/floof/model/search.py b/floof/model/search.py index be2bb9e..a413eb6 100644 --- a/floof/model/search.py +++ b/floof/model/search.py @@ -6,6 +6,7 @@ from floof.lib.search import do_search class SavedSearch(Entity): string = Field(Unicode) # I tried calling this query, but it broke elixir author = ManyToOne('User') + fork = ManyToOne("SavedSearch") def __unicode__(self): return self.string