mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 23:10:15 +02:00
* Squash services migrations * Add name to example service to allow it to be used in tests * Add name formatter to services * Add documentation
23 lines
471 B
Python
23 lines
471 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.1 on 2016-10-16 01:35
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('services', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='discordauthtoken',
|
|
name='user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='DiscordAuthToken',
|
|
),
|
|
]
|