Spaces:
Sleeping
Sleeping
File size: 724 Bytes
05dddec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Generated by Django 4.1.4 on 2023-02-19 04:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("api", "0009_remove_profile_events_remove_profile_notification"),
]
operations = [
migrations.CreateModel(
name="Gallery",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("path", models.CharField(max_length=1000)),
],
),
]
|