mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed #24894 -- Added contrib.postgres.functions.TransactionNow
This commit is contained in:
parent
3872a33132
commit
d34d39ade7
8 changed files with 96 additions and 1 deletions
|
@ -130,6 +130,13 @@ class Migration(migrations.Migration):
|
|||
('related_field', models.ForeignKey('postgres_tests.AggregateTestModel', null=True)),
|
||||
]
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='NowTestModel',
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('when', models.DateTimeField(null=True, default=None)),
|
||||
]
|
||||
),
|
||||
]
|
||||
|
||||
pg_92_operations = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue