mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30: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
22 lines
547 B
Python
22 lines
547 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-10-07 03:55
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
replaces = [('services', '0001_initial'), ('services', '0002_auto_20161016_0135'), ('services', '0003_delete_groupcache')]
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('auth', '0008_alter_user_username_max_length'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
]
|