mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
* feat: add libravatar support (#114) and format * feat: add documentation for libravatar * fix(gh-actions): remove support for 3.6 and add 3.11 3.6 reached EOL: https://devguide.python.org/versions/ I also refactored the matrix by removing duplicated code * fix(deps): add missing dnspython * feat(deps): add requirements.txt * fix(gh-actions): install deps * chore(deps): add pyproject.toml See https://github.com/pypa/pip/issues/8559 * fix(gh-actions): add fail-fast so all checks run * fix(deps): bump coverage to 7.1.0 * fix(pre-commit): update versions * fix(pre-commit): config error * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * style: update code for passing flake * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: 0xMRTT <0xMRTT@evta.fr> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
import django.core.files.storage
|
|
import django.utils.timezone
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
import avatar.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="Avatar",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
verbose_name="ID",
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True,
|
|
),
|
|
),
|
|
("primary", models.BooleanField(default=False)),
|
|
(
|
|
"avatar",
|
|
models.ImageField(
|
|
storage=django.core.files.storage.FileSystemStorage(),
|
|
max_length=1024,
|
|
upload_to=avatar.models.avatar_file_path,
|
|
blank=True,
|
|
),
|
|
),
|
|
(
|
|
"date_uploaded",
|
|
models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
(
|
|
"user",
|
|
models.ForeignKey(
|
|
to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE
|
|
),
|
|
),
|
|
],
|
|
),
|
|
]
|