migrate 썸네일형 리스트형 [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.. 더보기 [Redmine] 플러그인 설치법 {$REDMINE_ROOT}/vendor/plugins/위 경로에 플러그인을 받아서 복사. DB관련 설정이 있을경우rake db:migrate_plugins RAILS_ENV=production OR RAILS_ENV=production rake db:migrate:plugin NAME=[plugin_name] 삭제시:RAILS_ENV=production rake db:migrate:plugin NAME=[plugin_name] VERSION=0 참고 : http://www.redmine.org/projects/redmine/wiki/Plugins 더보기 이전 1 다음