-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1133 from moonstream-to/game7-mainnet-migration
Game7 mainnet tables migration
- Loading branch information
Showing
7 changed files
with
203 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
moonstreamdb-v3/moonstreamdbv3/alembic/versions/d816689b786a_add_game7_mainnet_labels.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
"""Add Game7 mainnet labels | ||
Revision ID: d816689b786a | ||
Revises: 1d53afc1eff4 | ||
Create Date: 2024-10-14 15:58:21.374247 | ||
""" | ||
from typing import Sequence, Union | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision: str = 'd816689b786a' | ||
down_revision: Union[str, None] = '1d53afc1eff4' | ||
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.create_table('game7_labels', | ||
sa.Column('id', sa.UUID(), nullable=False), | ||
sa.Column('label', sa.VARCHAR(length=256), nullable=False), | ||
sa.Column('transaction_hash', sa.VARCHAR(length=128), nullable=False), | ||
sa.Column('log_index', sa.Integer(), nullable=True), | ||
sa.Column('block_number', sa.BigInteger(), nullable=False), | ||
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False), | ||
sa.Column('block_timestamp', sa.BigInteger(), nullable=False), | ||
sa.Column('caller_address', sa.LargeBinary(), nullable=True), | ||
sa.Column('origin_address', sa.LargeBinary(), nullable=True), | ||
sa.Column('address', sa.LargeBinary(), nullable=False), | ||
sa.Column('label_name', sa.Text(), nullable=True), | ||
sa.Column('label_type', sa.VARCHAR(length=64), nullable=True), | ||
sa.Column('label_data', postgresql.JSONB(astext_type=sa.Text()), nullable=True), | ||
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text("TIMEZONE('utc', statement_timestamp())"), nullable=False), | ||
sa.PrimaryKeyConstraint('id', name=op.f('pk_game7_labels')), | ||
sa.UniqueConstraint('id', name=op.f('uq_game7_labels_id')) | ||
) | ||
op.create_index('ix_game7_labels_addr_block_num', 'game7_labels', ['address', 'block_number'], unique=False) | ||
op.create_index('ix_game7_labels_addr_block_ts', 'game7_labels', ['address', 'block_timestamp'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_address'), 'game7_labels', ['address'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_block_number'), 'game7_labels', ['block_number'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_caller_address'), 'game7_labels', ['caller_address'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_label'), 'game7_labels', ['label'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_label_name'), 'game7_labels', ['label_name'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_label_type'), 'game7_labels', ['label_type'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_origin_address'), 'game7_labels', ['origin_address'], unique=False) | ||
op.create_index(op.f('ix_game7_labels_transaction_hash'), 'game7_labels', ['transaction_hash'], unique=False) | ||
op.create_index('uk_game7_labels_tx_hash_log_idx_evt', 'game7_labels', ['transaction_hash', 'log_index'], unique=True, postgresql_where=sa.text("label='seer' and label_type='event'")) | ||
op.create_index('uk_game7_labels_tx_hash_log_idx_evt_raw', 'game7_labels', ['transaction_hash', 'log_index'], unique=True, postgresql_where=sa.text("label='seer-raw' and label_type='event'")) | ||
op.create_index('uk_game7_labels_tx_hash_tx_call', 'game7_labels', ['transaction_hash'], unique=True, postgresql_where=sa.text("label='seer' and label_type='tx_call'")) | ||
op.create_index('uk_game7_labels_tx_hash_tx_call_raw', 'game7_labels', ['transaction_hash'], unique=True, postgresql_where=sa.text("label='seer-raw' and label_type='tx_call'")) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_index('uk_game7_labels_tx_hash_tx_call_raw', table_name='game7_labels', postgresql_where=sa.text("label='seer-raw' and label_type='tx_call'")) | ||
op.drop_index('uk_game7_labels_tx_hash_tx_call', table_name='game7_labels', postgresql_where=sa.text("label='seer' and label_type='tx_call'")) | ||
op.drop_index('uk_game7_labels_tx_hash_log_idx_evt_raw', table_name='game7_labels', postgresql_where=sa.text("label='seer-raw' and label_type='event'")) | ||
op.drop_index('uk_game7_labels_tx_hash_log_idx_evt', table_name='game7_labels', postgresql_where=sa.text("label='seer' and label_type='event'")) | ||
op.drop_index(op.f('ix_game7_labels_transaction_hash'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_origin_address'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_label_type'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_label_name'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_label'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_caller_address'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_block_number'), table_name='game7_labels') | ||
op.drop_index(op.f('ix_game7_labels_address'), table_name='game7_labels') | ||
op.drop_index('ix_game7_labels_addr_block_ts', table_name='game7_labels') | ||
op.drop_index('ix_game7_labels_addr_block_num', table_name='game7_labels') | ||
op.drop_table('game7_labels') | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...amdb-v3/moonstreamdbv3/alembic_indexes/versions/c1bc596631f9_add_game7_mainnet_indexes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
"""Add Game7 mainnet indexes | ||
Revision ID: c1bc596631f9 | ||
Revises: 6807bdf6f417 | ||
Create Date: 2024-10-14 16:10:27.757094 | ||
""" | ||
from typing import Sequence, Union | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision: str = 'c1bc596631f9' | ||
down_revision: Union[str, None] = '6807bdf6f417' | ||
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.create_table('game7_blocks', | ||
sa.Column('l1_block_number', sa.BigInteger(), nullable=False), | ||
sa.Column('block_number', sa.BigInteger(), nullable=False), | ||
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False), | ||
sa.Column('block_timestamp', sa.BigInteger(), nullable=False), | ||
sa.Column('parent_hash', sa.VARCHAR(length=256), nullable=False), | ||
sa.Column('row_id', sa.BigInteger(), nullable=False), | ||
sa.Column('path', sa.Text(), nullable=False), | ||
sa.Column('transactions_indexed_at', sa.DateTime(timezone=True), nullable=True), | ||
sa.Column('logs_indexed_at', sa.DateTime(timezone=True), nullable=True), | ||
sa.Column('indexed_at', sa.DateTime(timezone=True), server_default=sa.text("TIMEZONE('utc', statement_timestamp())"), nullable=False), | ||
sa.PrimaryKeyConstraint('block_number', name=op.f('pk_game7_blocks')) | ||
) | ||
op.create_index(op.f('ix_game7_blocks_block_number'), 'game7_blocks', ['block_number'], unique=False) | ||
op.create_index(op.f('ix_game7_blocks_block_timestamp'), 'game7_blocks', ['block_timestamp'], unique=False) | ||
op.create_table('game7_reorgs', | ||
sa.Column('id', sa.UUID(), nullable=False), | ||
sa.Column('block_number', sa.BigInteger(), nullable=False), | ||
sa.Column('block_hash', sa.VARCHAR(length=256), nullable=False), | ||
sa.PrimaryKeyConstraint('id', name=op.f('pk_game7_reorgs')) | ||
) | ||
op.create_index(op.f('ix_game7_reorgs_block_hash'), 'game7_reorgs', ['block_hash'], unique=False) | ||
op.create_index(op.f('ix_game7_reorgs_block_number'), 'game7_reorgs', ['block_number'], unique=False) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_index(op.f('ix_game7_reorgs_block_number'), table_name='game7_reorgs') | ||
op.drop_index(op.f('ix_game7_reorgs_block_hash'), table_name='game7_reorgs') | ||
op.drop_table('game7_reorgs') | ||
op.drop_index(op.f('ix_game7_blocks_block_timestamp'), table_name='game7_blocks') | ||
op.drop_index(op.f('ix_game7_blocks_block_number'), table_name='game7_blocks') | ||
op.drop_table('game7_blocks') | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.19 | ||
0.0.20 |