Skip to content

Commit 8a7f4a4

Browse files
committed
updated db migration messages
1 parent d254614 commit 8a7f4a4

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

en/django_start_project/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,25 +92,23 @@ To create a database for our blog, let's run the following in the console: `pyth
9292

9393
(myvenv) ~/djangogirls$ python manage.py migrate
9494
Operations to perform:
95-
Synchronize unmigrated apps: messages, staticfiles
96-
Apply all migrations: contenttypes, sessions, admin, auth
97-
Synchronizing apps without migrations:
98-
Creating tables...
99-
Running deferred SQL...
100-
Installing custom SQL...
95+
Apply all migrations: auth, admin, contenttypes, sessions
10196
Running migrations:
10297
Rendering model states... DONE
10398
Applying contenttypes.0001_initial... OK
10499
Applying auth.0001_initial... OK
105100
Applying admin.0001_initial... OK
101+
Applying admin.0002_logentry_remove_auto_add... OK
106102
Applying contenttypes.0002_remove_content_type_name... OK
107103
Applying auth.0002_alter_permission_name_max_length... OK
108104
Applying auth.0003_alter_user_email_max_length... OK
109105
Applying auth.0004_alter_user_username_opts... OK
110106
Applying auth.0005_alter_user_last_login_null... OK
111107
Applying auth.0006_require_contenttypes_0002... OK
108+
Applying auth.0007_alter_validators_add_error_messages... OK
112109
Applying sessions.0001_initial... OK
113110

111+
114112
And we're done! Time to start the web server and see if our website is working!
115113

116114
You need to be in the directory that contains the `manage.py` file (the `djangogirls` directory). In the console, we can start the web server by running `python manage.py runserver`:

0 commit comments

Comments
 (0)