mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-09 03:16:25 +00:00
15 lines
303 B
Python
15 lines
303 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('machines', '0034_iplist_need_infra'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameModel('Alias', 'Domain')
|
|
]
|