Spaces:
Running
Running
kovacsvi
commited on
Commit
·
410b6ef
1
Parent(s):
7e0dad9
removed table schema
Browse files
utils.py
CHANGED
@@ -239,8 +239,9 @@ def update_bq_model_table():
|
|
239 |
destination_table=full_table_id,
|
240 |
project_id=project_id,
|
241 |
if_exists="replace",
|
242 |
-
table_schema=table_schema,
|
243 |
credentials=credentials,
|
244 |
)
|
|
|
|
|
245 |
except Exception as e:
|
246 |
print(f"BigQuery model table update failed: {e}")
|
|
|
239 |
destination_table=full_table_id,
|
240 |
project_id=project_id,
|
241 |
if_exists="replace",
|
|
|
242 |
credentials=credentials,
|
243 |
)
|
244 |
+
# TO-DO: add timestamp column?
|
245 |
+
print(f"Updated BigQuery model table!")
|
246 |
except Exception as e:
|
247 |
print(f"BigQuery model table update failed: {e}")
|