passerelle/passerelle/apps/ovh/migrations/0012_auto_20201027_1121.py

26 lines
818 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2020-10-27 10:21
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ovh', '0011_auto_20201026_1424'),
]
operations = [
migrations.AlterField(
model_name='ovhsmsgateway',
name='credit_alert_timestamp',
field=models.DateTimeField(editable=False, null=True),
),
migrations.AlterField(
model_name='ovhsmsgateway',
name='username',
field=models.CharField(blank=True, help_text='API user created on the SMS account. This field is obsolete once keys and secret fields above are filled.', max_length=64, verbose_name='Username (deprecated)'),
),
]