mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Migrate from AutoField to BigAutoField (#3493)
This commit is contained in:
19
src/pretix/plugins/paypal/migrations/0004_bigint.py
Normal file
19
src/pretix/plugins/paypal/migrations/0004_bigint.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.2.4 on 2023-09-26 12:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("paypal", "0003_migrate_to_v2"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="referencedpaypalobject",
|
||||
name="id",
|
||||
field=models.BigAutoField(
|
||||
auto_created=True, primary_key=True, serialize=False
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user