Changeset 158cc8d
- Timestamp:
- May 12, 2010, 8:20:15 PM (16 years ago)
- Branches:
- master, fysm-4-1, iframe, space-access, stable, stage, test-hooks
- Children:
- a559496
- Parents:
- 5feb719
- git-author:
- Alex Dehnert <adehnert@…> (05/12/10 20:20:15)
- git-committer:
- Alex Dehnert <adehnert@…> (05/12/10 20:20:15)
- Location:
- asadb
- Files:
-
- 1 added
- 2 edited
-
groups/models.py (modified) (1 diff)
-
settings.py (modified) (1 diff)
-
util/import_db.py (added)
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/models.py
r016afb4 r158cc8d 6 6 abbreviation = models.CharField(max_length=10, blank=True) 7 7 description = models.TextField() 8 activity_category = models.ForeignKey('ActivityCategory' )8 activity_category = models.ForeignKey('ActivityCategory', null=True, blank=True, ) 9 9 website_url = models.URLField() 10 10 constitution_url = models.URLField() 11 11 meeting_times = models.TextField(blank=True) 12 12 advisor_name = models.CharField(max_length=50, blank=True) 13 num_undergrads = models.Int Field()14 num_grads = models.Int Field()15 num_community = models.Int Field()16 num_other = models.Int Field()13 num_undergrads = models.IntegerField(null=True, blank=True, ) 14 num_grads = models.IntegerField(null=True, blank=True, ) 15 num_community = models.IntegerField(null=True, blank=True, ) 16 num_other = models.IntegerField(null=True, blank=True, ) 17 17 group_email = models.EmailField() 18 18 officer_email = models.EmailField() 19 main_account_id = models.Int Field()20 funding_account_id = models.Int Field()19 main_account_id = models.IntegerField(null=True, blank=True, ) 20 funding_account_id = models.IntegerField(null=True, blank=True, ) 21 21 athena_locker = models.CharField(max_length=14) 22 22 recognition_date = models.DateField() -
asadb/settings.py
r5feb719 r158cc8d 81 81 'django.contrib.sessions', 82 82 'django.contrib.sites', 83 'groups', 83 84 )
Note: See TracChangeset
for help on using the changeset viewer.