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,24 @@
# Generated by Django 5.1 on 2025-11-11 09:19
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Accounts',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('firstname', models.CharField(max_length=255)),
('lastname', models.CharField(max_length=255)),
('email', models.CharField(max_length=255)),
('joined_date', models.DateField(null=True)),
],
),
]