X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/366dedf71b3cdd775251c7cea4b1519b44b37164..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