11 lines
197 B
Python
11 lines
197 B
Python
"""
|
|
Create a new user/superuser
|
|
"""
|
|
|
|
from django.contrib.auth import get_user_model
|
|
|
|
|
|
class UserSeeder:
|
|
def run(self):
|
|
get_user_model().objects.create_superuser("998888112309", "2309")
|