Add created_at to blocks table
This commit is contained in:
parent
a9f57bcd2e
commit
8cb91afddc
@ -76,8 +76,12 @@ def _export_block_by_table(inspect_db_session, block_number: int, table: str) ->
|
|||||||
|
|
||||||
def _get_export_statement(table: str) -> str:
|
def _get_export_statement(table: str) -> str:
|
||||||
return f"""
|
return f"""
|
||||||
SELECT to_json({table})
|
SELECT to_json(json)
|
||||||
FROM {table}
|
FROM (
|
||||||
|
SELECT *, CURRENT_TIMESTAMP(0) as timestamp
|
||||||
|
FROM {table}
|
||||||
|
|
||||||
|
) json
|
||||||
WHERE
|
WHERE
|
||||||
block_number = :block_number
|
block_number = :block_number
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user