How to make a migration run outside transaction in a DDL based transaction?
select the correct answer from below options
a) class Migration(migrations.Migration):
atomic = False
b) class Migration(migrations.Migration):
atomic = True
c) class Migration(migrations):
atomic = False
d) class Migration(migrations):
atomic = True