We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e57743 commit f89b9c8Copy full SHA for f89b9c8
django/core/management.py
@@ -501,7 +501,8 @@ def syncdb(verbosity=2, interactive=True):
501
if model in created_models:
502
initial_sql = get_sql_initial_data_for_model(model)
503
if initial_sql:
504
- print "Installing initial data for %s model" % model._meta.object_name
+ if verbosity >= 2:
505
+ print "Installing initial data for %s model" % model._meta.object_name
506
try:
507
for sql in initial_sql:
508
cursor.execute(sql)
0 commit comments