24 lines
716 B
Python
24 lines
716 B
Python
# Generated by Django 4.2.25 on 2025-12-19 03:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('business', '0014_warehousing'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='RegisterPlatform',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('platform', models.CharField(max_length=100)),
|
|
('number', models.CharField(max_length=100)),
|
|
('password', models.CharField(max_length=100)),
|
|
('username', models.CharField(max_length=100)),
|
|
],
|
|
),
|
|
]
|