parent
5a491564e5
commit
2594d6ccdf
2 changed files with 10 additions and 1 deletions
@ -0,0 +1,10 @@ |
||||
from django.core.management import BaseCommand |
||||
from specializations.models import Specialization |
||||
from ratings.models import HistoryRating |
||||
from users.models import User |
||||
|
||||
|
||||
class Command(BaseCommand): |
||||
def handle(self, *args, **options): |
||||
contractors = User.contractor_objects.all() |
||||
|
||||
Loading…
Reference in new issue