Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

[IPOD-366] Sync migrations #1

Merged
merged 2 commits into from
May 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion broadcasts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
__version_info__ = {
'major': 0,
'minor': 9,
'minor': 10,
'micro': 0,
'releaselevel': 'final',
'serial': 1
Expand Down
20 changes: 20 additions & 0 deletions broadcasts/migrations/0003_auto_20190502_1228.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.17 on 2019-05-02 16:28
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('broadcasts', '0002_message_type'),
]

operations = [
migrations.AlterField(
model_name='broadcastmessage',
name='url_target',
field=models.TextField(default=b'.*', help_text='Uses regular expressions to match target URLs. <br/>\n <code>.*</code> applies to entire site. <br/>\n <code>/path/to/this.html</code> matches that specific path. <br/>\n <code>/path/to/this.html|/or/to/this.html</code> matches either\n <code>/path/to/this.html</code> OR <code>/or/to/this.html</code>\n <br/><code>/anything/under/.*</code> matches any path starting with\n <code>/anything/under/</code><br />\n <code>/anything/here/?</code> matches any path starting with\n <code>/anything/here/</code> OR <code>/anything/here</code><br />\n ("?" makes preceding character optional)', verbose_name='url target'),
),
]