27 lines
700 B
Python
27 lines
700 B
Python
# Generated by Django 2.0.4 on 2018-04-24 16:55
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("brutaldon", "0002_account")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="account",
|
|
name="client",
|
|
field=models.ForeignKey(
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
to="brutaldon.Client",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="client",
|
|
name="api_base_id",
|
|
field=models.URLField(default="https://mastodon.social"),
|
|
),
|
|
]
|