mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed #33114 -- Defined default output_field of StringAgg.
Thanks Simon Charette for the review.
This commit is contained in:
parent
8036b53de6
commit
ca58378390
4 changed files with 21 additions and 2 deletions
|
@ -202,6 +202,7 @@ class Migration(migrations.Migration):
|
|||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('boolean_field', models.BooleanField(null=True)),
|
||||
('char_field', models.CharField(max_length=30, blank=True)),
|
||||
('text_field', models.TextField(blank=True)),
|
||||
('integer_field', models.IntegerField(null=True)),
|
||||
('json_field', models.JSONField(null=True)),
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue