mirror of
https://github.com/django/django.git
synced 2025-07-30 16:44:30 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
@ -4,22 +4,36 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
dependencies = []
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='CharTextArrayIndexModel',
|
||||
name="CharTextArrayIndexModel",
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('char', django.contrib.postgres.fields.ArrayField(
|
||||
models.CharField(max_length=10), db_index=True, size=100)
|
||||
),
|
||||
('char2', models.CharField(max_length=11, db_index=True)),
|
||||
('text', django.contrib.postgres.fields.ArrayField(models.TextField(), db_index=True)),
|
||||
(
|
||||
"id",
|
||||
models.AutoField(
|
||||
verbose_name="ID",
|
||||
serialize=False,
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
),
|
||||
),
|
||||
(
|
||||
"char",
|
||||
django.contrib.postgres.fields.ArrayField(
|
||||
models.CharField(max_length=10), db_index=True, size=100
|
||||
),
|
||||
),
|
||||
("char2", models.CharField(max_length=11, db_index=True)),
|
||||
(
|
||||
"text",
|
||||
django.contrib.postgres.fields.ArrayField(
|
||||
models.TextField(), db_index=True
|
||||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
},
|
||||
options={},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue