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

Commit

Permalink
Merge pull request #1 from natgeosociety/df-feature-ipod-366
Browse files Browse the repository at this point in the history
[IPOD-366] Sync migrations
  • Loading branch information
dpfrakes committed May 2, 2019
2 parents 17eb803 + 1172f08 commit f447d47
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
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'),
),
]

0 comments on commit f447d47

Please sign in to comment.