Created accounts model

This commit is contained in:
2025-11-11 09:42:50 +00:00
parent c488f18cc6
commit 7021035f94
6 changed files with 90 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 5.1 on 2025-11-11 09:24
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('accounts', '0001_initial'),
]
operations = [
migrations.RenameModel(
old_name='Accounts',
new_name='Account',
),
]