28 lines
837 B
Python
28 lines
837 B
Python
# Generated by Django 3.2 on 2022-09-26 00:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Album',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('image', models.ImageField(upload_to='')),
|
|
('is_verified', models.BooleanField(blank=True, default=False)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('modified_at', models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Album',
|
|
'verbose_name_plural': 'Albums',
|
|
},
|
|
),
|
|
]
|