public
Description: Django-beancounter is a simple app I built to track my income and expenses.
Homepage: http://github.com/lincolnloop/django-beancounter
Clone URL: git://github.com/lincolnloop/django-beancounter.git
remove unnecessary fields
lincolnloop (author)
Mon Jan 05 17:03:27 -0800 2009
commit  13e5e7513eaea5b34ef9a14ffb97a40efd443c38
tree    cbdb34c15140168fd43aab327cd984d8a670eee1
parent  f9ffe2cd6008a99f8646f577afc7081c3a05035c
...
2
3
4
 
5
6
...
2
3
4
5
6
7
0
@@ -2,4 +2,5 @@ SEQUENCE = [
0
     'add_bid',
0
     'blank_fields',
0
     'delete_bid',
0
+    'prune_project_fields',
0
 ]
0
\ No newline at end of file
...
113
114
115
116
117
118
119
...
113
114
115
 
116
117
118
0
@@ -113,7 +113,6 @@ class Employee(Person):
0
 
0
 class Project(models.Model):
0
     name = models.CharField(max_length=100)
0
-    employees = models.ManyToManyField(Employee)
0
     active = models.BooleanField(default=True)
0
 
0
     def __unicode__(self):

Comments