2016-11-09 08:23:39 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.db import migrations
|
2016-11-09 08:23:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("core", "0006_auto_20161108_1703")]
|
2016-11-09 08:23:39 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2018-10-04 19:29:19 +00:00
|
|
|
name="Album", fields=[], options={"proxy": True}, bases=("core.sithfile",)
|
2016-11-09 08:23:39 +00:00
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
2018-10-04 19:29:19 +00:00
|
|
|
name="Picture", fields=[], options={"proxy": True}, bases=("core.sithfile",)
|
2016-11-09 08:23:39 +00:00
|
|
|
),
|
|
|
|
]
|