feat(core): remove un-needed field model_notes
from audit models
ref: #772 #759
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
# Generated by Django 5.1.9 on 2025-05-24 22:39
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0025_alter_centurionaudit_action_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='centurionaudit',
|
||||
name='model_notes',
|
||||
),
|
||||
]
|
@ -30,6 +30,7 @@ class CenturionAudit(
|
||||
_notes_enabled: bool = False
|
||||
"""Don't create notes table for istory model"""
|
||||
|
||||
model_notes = None
|
||||
|
||||
class Meta:
|
||||
|
||||
@ -204,6 +205,7 @@ class AuditMetaModel(
|
||||
CenturionSubModel,
|
||||
):
|
||||
|
||||
model_notes = None
|
||||
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
Reference in New Issue
Block a user