message
This commit is contained in:
21
sheets/migrations/0006_client.py
Normal file
21
sheets/migrations/0006_client.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Generated by Django 5.1.5 on 2025-04-08 11:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('sheets', '0005_secondtableentry'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Client',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=100)),
|
||||
('address', models.TextField()),
|
||||
],
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user