This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AuthType Basic | |
AuthName "Restricted Files" | |
AuthBasicProvider file | |
AuthUserFile /path/to/password/file | |
Require user valid-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create initial migration from existing models | |
./manage.py schemamigration app_name --initial | |
# apply the migration | |
./manage.py migrate app_name | |
# make a change, create a new migration | |
./manage.py schemamigration app_name --auto |
NewerOlder