Skip to content

Commit

Permalink
Merge pull request #42 from groveco/fix-migrations
Browse files Browse the repository at this point in the history
Fixed strings in migrations
  • Loading branch information
Anton-Shutik authored Oct 18, 2023
2 parents af65bad + 03690ba commit 897a646
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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),
),
]

0 comments on commit 897a646

Please sign in to comment.