마이그레이션 썸네일형 리스트형 [Django] Use Django ORM without migrate Django ORM is wonderful framwork!!When you want to use it without migrate, can setting simply.Just set managed option to True on Meta class. class TestModel(models.Model): name = models.CharField() ... class Meta: managed = False Defaults to True, meaning Django will create the appropriate database tables in migrate or as part of migrations and remove them as part of a flush management command.T.. 더보기 이전 1 다음