mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
Switch id field to use BigInt instead of int
This commit is contained in:
parent
eec7fb76f9
commit
61d7e015f2
2 changed files with 34 additions and 0 deletions
28
django_mailbox/migrations/0010_auto_20260217_0733.py
Normal file
28
django_mailbox/migrations/0010_auto_20260217_0733.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Generated by Django 3.2.25 on 2026-02-17 07:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('django_mailbox', '0009_alter_message_eml'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='mailbox',
|
||||
name='id',
|
||||
field=models.BigAutoField(primary_key=True, serialize=False),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='message',
|
||||
name='id',
|
||||
field=models.BigAutoField(primary_key=True, serialize=False),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='messageattachment',
|
||||
name='id',
|
||||
field=models.BigAutoField(primary_key=True, serialize=False),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue