2018-04-23 18:16:22 -04:00
|
|
|
# Generated by Django 2.0.1 on 2018-04-23 18:25
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
2019-05-17 13:07:11 -04:00
|
|
|
dependencies = []
|
2018-04-23 18:16:22 -04:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2019-05-17 13:07:11 -04:00
|
|
|
name="Client",
|
2018-04-23 18:16:22 -04:00
|
|
|
fields=[
|
2019-05-17 13:07:11 -04:00
|
|
|
(
|
|
|
|
"id",
|
|
|
|
models.AutoField(
|
|
|
|
auto_created=True,
|
|
|
|
primary_key=True,
|
|
|
|
serialize=False,
|
|
|
|
verbose_name="ID",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
("name", models.TextField(default="brutaldon")),
|
|
|
|
("api_base_id", models.URLField(default="mastodon.social")),
|
|
|
|
("client_id", models.TextField(blank=True, null=True)),
|
|
|
|
("client_secret", models.TextField(blank=True, null=True)),
|
2018-04-23 18:16:22 -04:00
|
|
|
],
|
2019-05-17 13:07:11 -04:00
|
|
|
)
|
2018-04-23 18:16:22 -04:00
|
|
|
]
|