-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: increase the src urlfield size
- Loading branch information
1 parent
01d17ea
commit a19b4c5
Showing
2 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...jango_server/news/migrations/0007_alter_news_img_src_url_alter_news_sentiment_and_more.py
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,32 @@ | ||
# Generated by Django 4.2.7 on 2023-12-12 10:09 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("news", "0006_analysis_neutral_news"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="news", | ||
name="img_src_url", | ||
field=models.URLField(max_length=2048), | ||
), | ||
migrations.AlterField( | ||
model_name="news", | ||
name="sentiment", | ||
field=models.IntegerField(), | ||
), | ||
migrations.AlterField( | ||
model_name="news", | ||
name="src", | ||
field=models.CharField(max_length=2048), | ||
), | ||
migrations.AlterField( | ||
model_name="news", | ||
name="src_url", | ||
field=models.URLField(max_length=2048), | ||
), | ||
] |
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