# 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).
18 lines
374 B
Python
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',
|
|
),
|
|
]
|