stats
This commit is contained in:
30
stats/migrations/0001_initial.py
Normal file
30
stats/migrations/0001_initial.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
0
stats/migrations/__init__.py
Normal file
0
stats/migrations/__init__.py
Normal file
Reference in New Issue
Block a user