31 lines
995 B
Python
31 lines
995 B
Python
# Generated by Django 4.1.7 on 2023-09-26 16:20
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('web', '0004_alter_customuser_vk_id_alter_customuser_yandex_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Snapshot',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('data', models.JSONField()),
|
|
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('project', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='web.project')),
|
|
],
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='snapshot',
|
|
index=models.Index(fields=['project', '-created_at'], name='stats_snaps_project_4ed188_idx'),
|
|
),
|
|
]
|