oncall-engine/engine/apps/heartbeat/migrations/0002_delete_heartbeat.py
Joey Orlando 63ac0972c5
remove deprecated heartbeat_heartbeat table/model (#2534)
# What this PR does

- Remove `heartbeat_heartbeat` table. This model/table does not seems to
be deprecated/used anywhere (no data in this in production/staging; see
more comments in the code about this).
2023-07-17 01:38:04 -04:00

18 lines
374 B
Python

# Generated by Django 3.2.20 on 2023-07-14 11:36
from django.db import migrations
import django_migration_linter as linter
class Migration(migrations.Migration):
dependencies = [
('heartbeat', '0001_squashed_initial'),
]
operations = [
linter.IgnoreMigration(),
migrations.DeleteModel(
name='HeartBeat',
),
]