Skip to content

Commit 5779df8

Browse files
committed
Fix typo in table name
1 parent 19328c8 commit 5779df8

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 5.1.6 on 2025-02-18 19:05
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('ifc_validation_models', '0006_model_header_validation_model_status_header_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterModelTable(
14+
name='useradditionalinfo',
15+
table='ifc_user_additional_info',
16+
),
17+
]

models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class UserAdditionalInfo(AuditedBaseModel):
257257

258258
class Meta:
259259

260-
db_table = "ifc_user_aditional_info"
260+
db_table = "ifc_user_additional_info"
261261
verbose_name = "User Additional Info"
262262
verbose_name_plural = "User Additional Info"
263263

0 commit comments

Comments
 (0)