uranusjr commented on code in PR #46232:
URL: https://github.com/apache/airflow/pull/46232#discussion_r1940425348
##########
airflow/migrations/versions/0032_3_0_0_rename_execution_date_to_logical_date_and_nullable.py:
##########
@@ -49,10 +49,15 @@ def upgrade():
"execution_date",
new_column_name="logical_date",
existing_type=TIMESTAMP(timezone=True),
- existing_nullable=False,
+ existing_nullable=True,
Review Comment:
```suggestion
nullable=True,
```
`existing_nullable` is for specifying the nullable property we _don’t_ want
to change. Here we want to change nullability.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]