mirror of
https://github.com/kennethreitz/photos.kennethreitz.org.git
synced 2026-06-21 15:10:56 +00:00
f9e276c487
Collections: optional date field (defaults to created_at display). Date picker on create form, shown on dashboard cards. Homepage: only shows cameras/lenses with 32+ images. View all links go to full filtered list pages. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
530 B
Python
23 lines
530 B
Python
# Generated by Django 6.0.4 on 2026-04-08 02:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("gallery", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="collection",
|
|
name="date",
|
|
field=models.DateField(
|
|
blank=True,
|
|
help_text="Optional display date (e.g. date of shoot). Defaults to creation date.",
|
|
null=True,
|
|
),
|
|
),
|
|
]
|