diff --git a/spug_api/apps/account/management/commands/initdb.py b/spug_api/apps/account/management/commands/initdb.py index c943ccc..b5ec31b 100644 --- a/spug_api/apps/account/management/commands/initdb.py +++ b/spug_api/apps/account/management/commands/initdb.py @@ -15,4 +15,4 @@ class Command(BaseCommand): execute_from_command_line(args + apps) execute_from_command_line(['manage.py', 'migrate']) self.stdout.write(self.style.SUCCESS('初始化成功')) - self.stdout.write(self.style.WARNING('废弃警告,v2.4.0之后将会移除该命令,请使用 python manage.py updatedb 来代替!')) + self.stdout.write(self.style.WARNING('废弃警告,v3.0.0之后将会移除该命令,请使用 python manage.py updatedb 来代替!')) diff --git a/spug_api/apps/account/management/commands/useradd.py b/spug_api/apps/account/management/commands/useradd.py index 92fcf67..f8c1d48 100644 --- a/spug_api/apps/account/management/commands/useradd.py +++ b/spug_api/apps/account/management/commands/useradd.py @@ -24,4 +24,4 @@ class Command(BaseCommand): is_supper=options['s'], ) self.stdout.write(self.style.SUCCESS('创建成功')) - self.stdout.write(self.style.WARNING('废弃警告,v2.4.0之后将会移除该命令,请使用 python manage.py user add 来代替!')) + self.stdout.write(self.style.WARNING('废弃警告,v3.0.0之后将会移除该命令,请使用 python manage.py user add 来代替!'))