a Django-based indieweb.org site
https://00dani.me/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
478 B
22 lines
478 B
# -*- coding: utf-8 -*- |
|
# Generated by Django 1.11.9 on 2018-01-29 05:14 |
|
from __future__ import unicode_literals |
|
|
|
from django.db import migrations |
|
import users.models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('users', '0011_auto_20180124_1311'), |
|
] |
|
|
|
operations = [ |
|
migrations.AlterModelManagers( |
|
name='user', |
|
managers=[ |
|
('objects', users.models.UserManager()), |
|
], |
|
), |
|
]
|
|
|