36059-vm/core/migrations/0001_initial.py
2025-11-22 21:48:03 +00:00

37 lines
1.8 KiB
Python

# Generated by Django 5.2.7 on 2025-11-22 21:43
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Profile',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('full_name', models.CharField(max_length=255)),
('display_name', models.CharField(blank=True, max_length=255)),
('country', models.CharField(max_length=100)),
('height_cm', models.PositiveIntegerField(blank=True, null=True)),
('weight_kg', models.PositiveIntegerField(blank=True, null=True)),
('gender_fit_style', models.CharField(blank=True, choices=[('WOMEN', "Women's"), ('MEN', "Men's"), ('UNISEX', 'Unisex'), ('CUSTOM', 'Custom')], max_length=10)),
('top_size', models.CharField(choices=[('XS', 'XS'), ('S', 'S'), ('M', 'M'), ('L', 'L'), ('XL', 'XL'), ('XXL', 'XXL'), ('OTHER', 'Other')], max_length=5)),
('bottom_size', models.CharField(max_length=20)),
('shoe_size', models.CharField(blank=True, max_length=20)),
('favorite_colors', models.JSONField(default=list)),
('favorite_categories', models.JSONField(default=list)),
('budget_level', models.CharField(choices=[('LOW', 'Low'), ('MEDIUM', 'Medium'), ('HIGH', 'High')], max_length=10)),
('instagram_handle', models.CharField(blank=True, max_length=255)),
('verification_level', models.CharField(default='NONE', max_length=20)),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
],
),
]