Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2230)

Unified Diff: appengine/chromium_rietveld/codereview/models.py

Issue 1155513002: [Rietveld] Add support for patchset dependencies (Closed) Base URL: https://chromium.googlesource.com/infra/infra@master
Patch Set: Fix lint issues in test Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/chromium_rietveld/codereview/models.py
diff --git a/appengine/chromium_rietveld/codereview/models.py b/appengine/chromium_rietveld/codereview/models.py
index d46a645ba2b41c29d1b6592da78d82b36526be0c..b5c1e7255b08199f81db8efab6da7b84518328c1 100644
--- a/appengine/chromium_rietveld/codereview/models.py
+++ b/appengine/chromium_rietveld/codereview/models.py
@@ -613,6 +613,8 @@ class PatchSet(ndb.Model):
# TODO(maruel): Deprecated, remove once the live instance has all its data
# converted to TryJobResult instances.
build_results = ndb.StringProperty(repeated=True)
+ depends_on_patchset = ndb.StringProperty()
+ dependent_patchsets = ndb.StringProperty(repeated=True)
@property
def num_patches(self):
« no previous file with comments | « appengine/chromium_rietveld/codereview/dependency_utils.py ('k') | appengine/chromium_rietveld/codereview/urls.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698