четверг, 25 декабря 2014 г., 18:06:35 UTC+3 пользователь Robert Jonathan Šimon написал:
Hi,When i googled for this problem a found out, that with migrations in Django 1.7, there is new way how it should be done, but i didnt understand it how. Can anyone explain me the new way how to do it?Thanks a lot.
python2.7 manage.py migrate
makemigrations - проверяет есть ли новые таблицы
migrate - создает таблицы или удаляет
Напишите модель простую что бы протестировать
class Home(models.Model):
title = models.CharField(max_length=150)
text = models.TextField(blank=True, null=True)
date = models.DateTimeField(blank=True, null=True)
def __unicode__(self):
return self.title
проведите две команды
python2.7 manage.py makemigrations
python2.7 manage.py migrate
Потом закомментируйте одну строку
class Home(models.Model):
title = models.CharField(max_length=150)
#text = models.TextField(blank=True, null=True)
date = models.DateTimeField(blank=True, null=True)
def __unicode__(self):
return self.title
И опять две команды
python2.7 manage.py makemigrations
python2.7 manage.py migrate
поле удалится
#text = models.TextField(blank=True, null=True)
Что бы не было ошибок нужно всегда заполнять blank=True, null=True, смотреть документацию, иначе выдаст варианты.
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 django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
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/dbd118f7-2410-4755-958f-c1e63f33ad56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment