|
| 1 | +# Generated by Django 5.2 on 2025-04-12 12:41 |
| 2 | + |
| 3 | +import api.utils |
| 4 | +import django.contrib.auth.models |
| 5 | +import django.contrib.auth.validators |
| 6 | +import django.db.models.deletion |
| 7 | +import django.utils.timezone |
| 8 | +from django.conf import settings |
| 9 | +from django.db import migrations, models |
| 10 | + |
| 11 | + |
| 12 | +class Migration(migrations.Migration): |
| 13 | + |
| 14 | + initial = True |
| 15 | + |
| 16 | + dependencies = [ |
| 17 | + ('auth', '0012_alter_user_first_name_max_length'), |
| 18 | + ] |
| 19 | + |
| 20 | + operations = [ |
| 21 | + migrations.CreateModel( |
| 22 | + name='Category', |
| 23 | + fields=[ |
| 24 | + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 25 | + ('name', models.CharField(max_length=255)), |
| 26 | + ('slug', models.SlugField(max_length=255, unique=True)), |
| 27 | + ], |
| 28 | + ), |
| 29 | + migrations.CreateModel( |
| 30 | + name='User', |
| 31 | + fields=[ |
| 32 | + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 33 | + ('password', models.CharField(max_length=128, verbose_name='password')), |
| 34 | + ('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')), |
| 35 | + ('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')), |
| 36 | + ('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')), |
| 37 | + ('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')), |
| 38 | + ('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')), |
| 39 | + ('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')), |
| 40 | + ('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')), |
| 41 | + ('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')), |
| 42 | + ('email', models.EmailField(max_length=254, unique=True)), |
| 43 | + ('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.group', verbose_name='groups')), |
| 44 | + ('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.permission', verbose_name='user permissions')), |
| 45 | + ], |
| 46 | + options={ |
| 47 | + 'verbose_name': 'user', |
| 48 | + 'verbose_name_plural': 'users', |
| 49 | + 'abstract': False, |
| 50 | + }, |
| 51 | + managers=[ |
| 52 | + ('objects', django.contrib.auth.models.UserManager()), |
| 53 | + ], |
| 54 | + ), |
| 55 | + migrations.CreateModel( |
| 56 | + name='Product', |
| 57 | + fields=[ |
| 58 | + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 59 | + ('name', models.CharField(max_length=255)), |
| 60 | + ('slug', models.SlugField(max_length=255, unique=True)), |
| 61 | + ('description', models.TextField()), |
| 62 | + ('price', models.DecimalField(decimal_places=2, max_digits=10)), |
| 63 | + ('stock', models.IntegerField()), |
| 64 | + ('image', models.ImageField(blank=True, null=True, upload_to=api.utils.product_upload_to_unique)), |
| 65 | + ('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='products', to='api.category')), |
| 66 | + ], |
| 67 | + ), |
| 68 | + migrations.CreateModel( |
| 69 | + name='Profile', |
| 70 | + fields=[ |
| 71 | + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 72 | + ('bio', models.TextField(blank=True)), |
| 73 | + ('location', models.CharField(blank=True, max_length=100)), |
| 74 | + ('birth_date', models.DateField(blank=True, null=True)), |
| 75 | + ('picture_url', models.ImageField(blank=True, null=True, upload_to=api.utils.profile_upload_to_unique)), |
| 76 | + ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), |
| 77 | + ], |
| 78 | + ), |
| 79 | + ] |
0 commit comments