[PATCH V2] Add a source_tree field to Project.
Guilherme Salgado
guilherme.salgado at linaro.org
Wed May 11 20:09:56 EST 2011
Signed-off-by: Guilherme Salgado <guilherme.salgado at linaro.org>
---
apps/patchwork/models.py | 3 +++
lib/sql/migration/008-project-source-tree.sql | 4 ++++
2 files changed, 7 insertions(+), 0 deletions(-)
create mode 100644 lib/sql/migration/008-project-source-tree.sql
diff --git a/apps/patchwork/models.py b/apps/patchwork/models.py
index 6a7ffc5..2b5d429 100644
--- a/apps/patchwork/models.py
+++ b/apps/patchwork/models.py
@@ -63,6 +63,9 @@ class Project(models.Model):
name = models.CharField(max_length=255, unique=True)
listid = models.CharField(max_length=255, unique=True)
listemail = models.CharField(max_length=200)
+ source_tree = models.CharField(max_length=300, blank=True, null=True)
+ last_seen_commit_ref = models.CharField(max_length=255, blank=True,
+ null=True)
def __unicode__(self):
return self.name
diff --git a/lib/sql/migration/008-project-source-tree.sql b/lib/sql/migration/008-project-source-tree.sql
new file mode 100644
index 0000000..32b679c
--- /dev/null
+++ b/lib/sql/migration/008-project-source-tree.sql
@@ -0,0 +1,4 @@
+BEGIN;
+ALTER TABLE patchwork_project ADD column source_tree varchar(300);
+ALTER TABLE patchwork_project ADD column last_seen_commit_ref varchar(255);
+COMMIT;
More information about the Patchwork
mailing list