8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-01 07:22:25 +00:00
re2o/preferences/migrations/0055_generaloption_main_site_url.py

21 lines
513 B
Python
Raw Normal View History

2018-11-15 13:35:26 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-11-14 16:46
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2018-12-04 13:29:47 +00:00
('preferences', '0053_optionaluser_self_change_room'),
2018-11-15 13:35:26 +00:00
]
operations = [
migrations.AddField(
model_name='generaloption',
name='main_site_url',
field=models.URLField(default='http://re2o.example.org', max_length=255),
),
]