mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 16:07:39 +00:00
79da9e9f4f
(`ruff check --fix`)
23 lines
645 B
Python
23 lines
645 B
Python
# Generated by Django 1.11.1 on 2017-07-14 17:34
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("accounts", "0008_profile_bill_to")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="profile",
|
|
name="last_sms_date",
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="profile", name="sms_limit", field=models.IntegerField(default=0)
|
|
),
|
|
migrations.AddField(
|
|
model_name="profile", name="sms_sent", field=models.IntegerField(default=0)
|
|
),
|
|
]
|