Skip to content

Commit 848063d

Browse files
committed
add missing migration
1 parent e1e5d4a commit 848063d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Generated by Django 5.1.4 on 2025-04-24 22:08
2+
3+
import uuid
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('core', '0005_add_pretalx_data_model'),
11+
]
12+
13+
operations = [
14+
migrations.CreateModel(
15+
name='PretixData',
16+
fields=[
17+
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18+
('uuid', models.UUIDField(default=uuid.uuid4)),
19+
('resource', models.CharField(choices=[('orders', 'Orders'), ('products', 'Products'), ('vouchers', 'Vouchers')], max_length=255)),
20+
('content', models.JSONField()),
21+
('created_at', models.DateTimeField(auto_now_add=True)),
22+
('modified_at', models.DateTimeField(auto_now=True)),
23+
('processed_at', models.DateTimeField(blank=True, null=True)),
24+
],
25+
),
26+
]

0 commit comments

Comments
 (0)