summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py')
-rw-r--r--src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py b/src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py
index b09b06302..1a2fff1ea 100644
--- a/src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py
+++ b/src/lib/Bcfg2/Server/Reports/Updater/Changes/1_3_0.py
@@ -6,7 +6,7 @@ The updates() method must be defined and it should return an Updater object
"""
from Bcfg2.Server.Reports.Updater import Updater, UpdaterError
from Bcfg2.Server.Reports.Updater.Routines import AddColumns, \
- RemoveColumns, RebuildTable
+ RemoveColumns, RebuildTable, DropTable
from Bcfg2.Server.Reports.reports.models import Reason, Interaction
@@ -21,6 +21,7 @@ def updates():
'perms', 'current_perms',
'status', 'current_status',
'to', 'current_to']))
+ fixes.add(DropTable('reports_ping'))
return fixes