From 3373ffcea8532d2126a62515c1adaa33229af199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D1=8B=D0=B4=D1=80=D0=B8=D0=BD=20=D0=A1=D0=B5=D1=80?= =?UTF-8?q?=D0=B3=D0=B5=D0=B9?= Date: Fri, 5 Sep 2025 16:06:27 +0300 Subject: [PATCH] f --- .history/testpostgre_20250905023148.py | 11 +++++++++++ .history/testpostgre_20250905160615.py | 11 +++++++++++ testpostgre.py | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .history/testpostgre_20250905023148.py create mode 100644 .history/testpostgre_20250905160615.py diff --git a/.history/testpostgre_20250905023148.py b/.history/testpostgre_20250905023148.py new file mode 100644 index 0000000..d748035 --- /dev/null +++ b/.history/testpostgre_20250905023148.py @@ -0,0 +1,11 @@ +from airflow import DAG +from airflow.operators.dummy import DummyOperator +from datetime import datetime + +with DAG( + dag_id="hello_world", + start_date=datetime(2025, 1, 1), + schedule_interval="@daily", + catchup=False, +) as dag: + task = DummyOperator(task_id="dummy_task") diff --git a/.history/testpostgre_20250905160615.py b/.history/testpostgre_20250905160615.py new file mode 100644 index 0000000..8c8b419 --- /dev/null +++ b/.history/testpostgre_20250905160615.py @@ -0,0 +1,11 @@ +from airflow import DAG +from airflow.operators.dummy import DummyOperator +from datetime import datetime + +with DAG( + dag_id="hello_world_postgre", + start_date=datetime(2025, 1, 1), + schedule_interval="@daily", + catchup=False, +) as dag: + task = DummyOperator(task_id="dummy_task") diff --git a/testpostgre.py b/testpostgre.py index d748035..8c8b419 100644 --- a/testpostgre.py +++ b/testpostgre.py @@ -3,7 +3,7 @@ from airflow.operators.dummy import DummyOperator from datetime import datetime with DAG( - dag_id="hello_world", + dag_id="hello_world_postgre", start_date=datetime(2025, 1, 1), schedule_interval="@daily", catchup=False,