Django notes: Difference between revisions
From Federal Burro of Information
Jump to navigationJump to search
(Created page with " http://dustinfarris.com/2012/09/29/setting-up-a-django-server-with-gentoo.html") |
No edit summary |
||
Line 1: | Line 1: | ||
http://dustinfarris.com/2012/09/29/setting-up-a-django-server-with-gentoo.html | http://dustinfarris.com/2012/09/29/setting-up-a-django-server-with-gentoo.html | ||
the process for tuning the schema: | |||
update the model: scm.py in this case. | |||
python manage.py makemigrations scm | |||
python manage.py sqlmigrate scm 0004 | |||
python manage.py migrate scm | |||
python manage.py runserver |
Revision as of 18:56, 15 September 2014
http://dustinfarris.com/2012/09/29/setting-up-a-django-server-with-gentoo.html
the process for tuning the schema:
update the model: scm.py in this case.
python manage.py makemigrations scm python manage.py sqlmigrate scm 0004 python manage.py migrate scm python manage.py runserver