Changeset 158cc8d


Ignore:
Timestamp:
May 12, 2010, 8:20:15 PM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
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)
Message:

Finalize importing the old DB

Note that this includes fixing up the model as well as
actually realizing that this app exists.

Location:
asadb
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • asadb/groups/models.py

    r016afb4 r158cc8d  
    66    abbreviation = models.CharField(max_length=10, blank=True)
    77    description = models.TextField()
    8     activity_category = models.ForeignKey('ActivityCategory')
     8    activity_category = models.ForeignKey('ActivityCategory', null=True, blank=True, )
    99    website_url = models.URLField()
    1010    constitution_url = models.URLField()
    1111    meeting_times = models.TextField(blank=True)
    1212    advisor_name = models.CharField(max_length=50, blank=True)
    13     num_undergrads = models.IntField()
    14     num_grads = models.IntField()
    15     num_community = models.IntField()
    16     num_other = models.IntField()
     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, )
    1717    group_email = models.EmailField()
    1818    officer_email = models.EmailField()
    19     main_account_id = models.IntField()
    20     funding_account_id = models.IntField()
     19    main_account_id = models.IntegerField(null=True, blank=True, )
     20    funding_account_id = models.IntegerField(null=True, blank=True, )
    2121    athena_locker = models.CharField(max_length=14)
    2222    recognition_date = models.DateField()
  • asadb/settings.py

    r5feb719 r158cc8d  
    8181    'django.contrib.sessions',
    8282    'django.contrib.sites',
     83    'groups',
    8384)
Note: See TracChangeset for help on using the changeset viewer.