mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-09 03:54:08 +00:00
Fix typo in redirect_to help text
Interestingly enough, this showed up because the migration was out of
sync. Normally this means the migration has not been updated, but in
this case it appears the migration is correct and the actual model is
incorrect. Yet both the model and the migraiton were introduced in
commit e2120f0a
.
This commit is contained in:
@ -40,7 +40,7 @@ class DocPageRedirect(models.Model):
|
||||
completely removed from the PostgreSQL documentation
|
||||
"""
|
||||
redirect_from = models.CharField(max_length=64, null=False, blank=False, unique=True, help_text='Page to redirect from, e.g. "old_page.html"')
|
||||
redirect_to = models.CharField(max_length=64, null=False, blank=False, unique=True, help_text='Page to redirect from, e.g. "new_page.html"')
|
||||
redirect_to = models.CharField(max_length=64, null=False, blank=False, unique=True, help_text='Page to redirect to, e.g. "new_page.html"')
|
||||
|
||||
class Meta:
|
||||
verbose_name_plural = "Doc page redirects"
|
||||
|
Reference in New Issue
Block a user