masschallenge/django-accelerator

View on GitHub
accelerator/models/entrepreneur_profile.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from accelerator.models import CoreProfile


class EntrepreneurProfile(CoreProfile):
    user_type = 'entrepreneur'
    default_page = "applicant_homepage"

    class Meta:
        db_table = 'accelerator_entrepreneurprofile'