Skip to content

Instantly share code, notes, and snippets.

View dasvador's full-sized avatar

WONWOODO dasvador

  • 8percent
View GitHub Profile
@dasvador
dasvador / jsonfield
Last active January 22, 2016 06:21
DB가 postgresql일 경우 JsonField타입의 칼럼을 생성후 Django에서 사용하는법
1.인스톨
pip install jsonfield
2.설정
models.py에 다음과 같이 추가
from jsonfield import JSONField
....
...
class Something(models.Model):
name = models.CharField(max_length=32)
@dasvador
dasvador / gist_debug_toolbar.txt
Last active January 18, 2016 06:26
Query Execute Analytics
# HOW TO DJANGO Debug Toolbar Install
# 1.Required library install
pip install django-debug-toolbar
pip install django-debug-toolbar-template-timings
# 2. Create Another settings file from settins.py clone (exam - settings_dev.py)
# 3. Configuration settings_dev.py
INSTALLED_APPS = (
....