Merge pull request #1127 from moonstream-to/rename-column

Rename column
pull/1132/head moonstreamdbv3/v0.0.19
Andrey Dolgolev 2024-09-24 20:42:56 +03:00 zatwierdzone przez GitHub
commit d614643c0b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 36 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1,34 @@
"""Add deploy block
Revision ID: 6807bdf6f417
Revises: 48d2562504d1
Create Date: 2024-08-23 16:51:47.147758
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = "6807bdf6f417"
down_revision: Union[str, None] = "25b339f55f8f"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.add_column(
"abi_jobs",
sa.Column("deployment_block_number", sa.BigInteger(), nullable=True),
)
# ### end Alembic commands ###
def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column("abi_jobs", "deployment_block_number")
# ### end Alembic commands ###

Wyświetl plik

@ -818,6 +818,7 @@ class AbiJobs(Base):
historical_crawl_status = Column(VARCHAR(256), nullable=False, index=True)
progress = Column(Integer, nullable=False, index=False)
moonworm_task_pickedup = Column(Boolean, nullable=False, index=False)
deployment_block_number = Column(BigInteger, nullable=True, index=False)
abi = Column(Text, nullable=False)
created_at = Column(
DateTime(timezone=True), server_default=utcnow(), nullable=False

Wyświetl plik

@ -1 +1 @@
0.0.18
0.0.19