from django.core.management.base import BaseCommand
from django.core.management import call_command
class Command(BaseCommand):
def handle(self, *args, **kwargs):
call_command("populate_authors")
call_command("populate_columns")
call_command("populate_posts")