19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 5.2 on 2025-05-13 08:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gmail', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='gmailcredential',
|
|
name='last_history_id',
|
|
field=models.CharField(blank=True, help_text='Last processed Gmail history ID', max_length=50, null=True),
|
|
),
|
|
]
|