Hello, >From your post I understand you did not write unittests for your models? I would recommend to write some sensible tests for them and start tracing your problem from the failures you should get. Best,
David 2014-12-15 8:15 GMT+01:00 Shazwi Suwandi <[email protected]>: > I've added 'core' to settings.py file under INSTALLED_APPS too. > > > On Monday, 15 December 2014 15:10:12 UTC+8, Shazwi Suwandi wrote: >> >> from django.db import models >> from django.contrib.auth.models import User >> >> # CORE APPLICATION >> # Create your models here. >> class Member(models.Model): >> user = models.OneToOneField(User) >> description = models.CharField(max_length=250) >> date_of_birth = models.DateField() >> location = models.CharField(max_length=100) >> gender = models.CharField(max_length=15) >> >> class NewTable(models.Model): >> test = models.CharField(max_length=25) >> >> I've created some models and I used makemigrations and migrate. I went to >> my db and checked that only the default tables are there (auth_group ... >> django_session). I know that my connection settings are right and that I see >> new rows being added to the auth_user table when I create users in django >> admin page. >> >> Is there something that I must have missed out? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/7af04f16-09a8-458d-8857-c71694394101%40googlegroups.com. > > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAKUKWzmd-7Qqf58E5QpBTc6SkMBTXQcZ0QL7WsPbHt%2Ba0rameA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

