Four more django-admin commands added

I have added four more app-related django-admin commands.
This commit is contained in:
Manoj Tyagi 2019-10-10 23:45:55 +05:30 committed by GitHub
parent 1bdc64dcf1
commit 166ca58ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -69,3 +69,15 @@ django-admin sqlmigrate # Prints the SQL statements for the nam
django-admin sqlsequencereset # Prints the SQL statements for resetting sequences for the given app name(s).
django-admin squashmigrations # Squashes an existing set of migrations (from first until specified) into a single new one.
django-admin testserver # Runs a development server with data from the given fixture(s).
###################################################################################
# App related commands #######################################################
###################################################################################
django-admin changepassword <username> # Allows changing a users password. It prompts you to enter a new password twice for the given user.
django-admin createsuperuser # Creates a superuser account (a user who has all permissions).
django-admin remove_stale_contenttypes # Deletes stale content types (from deleted models) in your database.
django-admin clearsessions # Can be run as a cron job or directly to clean out expired sessions.
django-admin collectstatic # Helps to collect all the static files in the one mentioned directory.