Add license field on photos
This commit is contained in:
parent
fb43ac14b7
commit
55e1b71f3a
3 changed files with 28 additions and 1 deletions
18
photologue_custom/migrations/0004_photoextended_license.py
Normal file
18
photologue_custom/migrations/0004_photoextended_license.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.24 on 2021-10-22 16:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('photologue_custom', '0003_auto_20211013_1507'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='photoextended',
|
||||
name='license',
|
||||
field=models.CharField(blank=True, max_length=255, verbose_name='license'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue