Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed strings in migrations #42

Merged
merged 1 commit into from
Oct 18, 2023
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
4 changes: 2 additions & 2 deletions segments/migrations/0002_auto_20151028_1326.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='segment',
name='static_ids',
field=models.TextField(help_text=b'Newline delimited list of static IDs to hold in the segment', null=True, blank=True),
field=models.TextField(help_text='Newline delimited list of static IDs to hold in the segment', null=True, blank=True),
),
migrations.AlterField(
model_name='segment',
name='definition',
field=models.TextField(help_text=b'SQL query that returns IDs of users in the segment.', null=True, blank=True),
field=models.TextField(help_text='SQL query that returns IDs of users in the segment.', null=True, blank=True),
),
]
4 changes: 2 additions & 2 deletions segments/migrations/0003_auto_20151028_1914.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='segment',
name='definition',
field=models.TextField(help_text=b'SQL query returning IDs of users in the segment.', null=True, blank=True),
field=models.TextField(help_text='SQL query returning IDs of users in the segment.', null=True, blank=True),
),
migrations.AlterField(
model_name='segment',
name='static_ids',
field=models.TextField(help_text=b'Newline-delimited list of IDs in the segment', null=True, blank=True),
field=models.TextField(help_text='Newline-delimited list of IDs in the segment', null=True, blank=True),
),
]
4 changes: 2 additions & 2 deletions segments/migrations/0004_auto_20170427_1423.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='segment',
name='manager_method',
field=models.CharField(blank=True, help_text=b'Methoed to call on ContentType.model_class().manager_name',
field=models.CharField(blank=True, help_text='Methoed to call on ContentType.model_class().manager_name',
max_length=128, null=True),
),
migrations.AddField(
model_name='segment',
name='manager_name',
field=models.CharField(default=b'objects',
help_text=b"If using manager_method, specify the name of the manager (usually 'objects')",
help_text="If using manager_method, specify the name of the manager (usually 'objects')",
max_length=128),
),
]