Added missing migrations and removed unused requirements

This commit is contained in:
ITQ
2024-03-02 12:47:23 +03:00
parent 84b245ecf2
commit bcdcfaf7f2
2 changed files with 30 additions and 2 deletions
@@ -0,0 +1,29 @@
# Generated by Django 4.2.10 on 2024-03-02 09:47
import django.core.validators
from django.db import migrations, models
import users.validators
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')),
('login', models.CharField(max_length=30, validators=[django.core.validators.RegexValidator('^[a-zA-Z0-9-]+$')])),
('email', models.EmailField(max_length=50)),
('password', models.CharField(max_length=100, validators=[django.core.validators.RegexValidator('^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9]).{6,100}$')])),
('countryCode', models.CharField(max_length=2, validators=[django.core.validators.RegexValidator('[a-zA-Z]{2}'), users.validators.CountryCodeValidator()])),
('isPublic', models.BooleanField()),
('phone', models.CharField(blank=True, max_length=20, null=True, validators=[django.core.validators.MaxLengthValidator(20), django.core.validators.RegexValidator('\\+[\\d]+')])),
('image', models.URLField(blank=True, null=True)),
],
),
]
+1 -2
View File
@@ -2,7 +2,6 @@ django==4.2.10
djangorestframework==3.14.0 djangorestframework==3.14.0
python-dotenv==1.0.1 python-dotenv==1.0.1
psycopg2-binary==2.9.9 psycopg2-binary==2.9.9
dj-database-url==2.1.0
django-filter==23.5 django-filter==23.5
bcrypt==4.1.2 bcrypt==4.1.2
djangorestframework-jwt==1.11.0 pyjwt==1.7.1