-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add name, name_exact and name_startswith filters to Feed
- Loading branch information
1 parent
5a50f13
commit 466a2b6
Showing
2 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 2.2.24 on 2021-08-04 19:30 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('feeds', '0008_auto_20190114_1437'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='comment', | ||
name='content', | ||
field=models.TextField(blank=True), | ||
), | ||
migrations.AlterField( | ||
model_name='comment', | ||
name='title', | ||
field=models.CharField(blank=True, max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='feed', | ||
name='name', | ||
field=models.CharField(blank=True, db_index=True, max_length=200), | ||
), | ||
migrations.AlterField( | ||
model_name='note', | ||
name='content', | ||
field=models.TextField(blank=True), | ||
), | ||
migrations.AlterField( | ||
model_name='note', | ||
name='title', | ||
field=models.CharField(blank=True, max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='tag', | ||
name='name', | ||
field=models.CharField(blank=True, max_length=100), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters