13 lines
410 B
Python
13 lines
410 B
Python
# Copyright (c) 2016 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.db.migrations import Migration
|
|
|
|
|
|
class ActivityStreamDisabledMigration(Migration):
|
|
|
|
def apply(self, project_state, schema_editor, collect_sql=False):
|
|
from awx.main.signals import disable_activity_stream
|
|
with disable_activity_stream():
|
|
return Migration.apply(self, project_state, schema_editor, collect_sql)
|