2024-07-31 23:18:01 +02:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
|
|
("confirmation", "0014_confirmation_confirmatio_content_80155a_idx"),
|
2024-08-13 21:32:18 +02:00
|
|
|
# We want to be linking to tables that are already bigints
|
|
|
|
("zerver", "0531_convert_most_ids_to_bigints"),
|
2024-07-31 23:18:01 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name="confirmation",
|
|
|
|
name="object_id",
|
|
|
|
field=models.PositiveBigIntegerField(db_index=True),
|
|
|
|
),
|
|
|
|
]
|