fix(blockchain): fix database schema, migrations and add genesis script

This commit is contained in:
oib
2026-03-03 17:58:03 +01:00
parent 14d0ed3b44
commit abe13d065f
5 changed files with 129 additions and 19 deletions

View File

@@ -0,0 +1,52 @@
"""add_chain_id
Revision ID: 50fb6691025c
Revises: fix_transaction_block_foreign_key
Create Date: 2026-03-03 17:48:48.141666
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel
# revision identifiers, used by Alembic.
revision: str = '50fb6691025c'
down_revision: Union[str, Sequence[str], None] = 'fix_transaction_block_foreign_key'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
with op.batch_alter_table('account', schema=None) as batch_op:
batch_op.add_column(sa.Column('chain_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False, server_default='ait-testnet'))
with op.batch_alter_table('block', schema=None) as batch_op:
batch_op.add_column(sa.Column('chain_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False, server_default='ait-testnet'))
batch_op.drop_index('ix_block_height')
batch_op.create_index('ix_block_height', ['height'], unique=False)
batch_op.create_index('ix_block_chain_id', ['chain_id'], unique=False)
batch_op.create_unique_constraint('uix_block_chain_height', ['chain_id', 'height'])
with op.batch_alter_table('receipt', schema=None) as batch_op:
batch_op.add_column(sa.Column('chain_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False, server_default='ait-testnet'))
batch_op.drop_index('ix_receipt_receipt_id')
batch_op.create_index('ix_receipt_receipt_id', ['receipt_id'], unique=False)
batch_op.create_index('ix_receipt_chain_id', ['chain_id'], unique=False)
batch_op.create_unique_constraint('uix_receipt_chain_id', ['chain_id', 'receipt_id'])
# Drop foreign key constraint using naming convention if needed,
# but since SQLite doesn't support it directly, batch_alter_table handles it
# batch_op.drop_constraint(None, type_='foreignkey')
with op.batch_alter_table('transaction', schema=None) as batch_op:
batch_op.add_column(sa.Column('chain_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False, server_default='ait-testnet'))
batch_op.drop_index('ix_transaction_tx_hash')
batch_op.create_index('ix_transaction_tx_hash', ['tx_hash'], unique=False)
batch_op.create_index('ix_transaction_chain_id', ['chain_id'], unique=False)
batch_op.create_unique_constraint('uix_tx_chain_hash', ['chain_id', 'tx_hash'])
def downgrade() -> None:
pass

View File

@@ -11,7 +11,7 @@ import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'fix_transaction_block_foreign_key'
down_revision = None
down_revision = "80bc0020bde2"
branch_labels = None
depends_on = None
@@ -22,7 +22,7 @@ def upgrade():
# Create new transaction table with correct foreign key
op.execute("""
CREATE TABLE transaction_new (
CREATE TABLE "transaction_new" (
id INTEGER NOT NULL PRIMARY KEY,
tx_hash VARCHAR NOT NULL,
block_height INTEGER,
@@ -36,18 +36,18 @@ def upgrade():
# Copy data from old table
op.execute("""
INSERT INTO transaction_new (id, tx_hash, block_height, sender, recipient, payload, created_at)
SELECT id, tx_hash, block_height, sender, recipient, payload, created_at FROM transaction
INSERT INTO "transaction_new" (id, tx_hash, block_height, sender, recipient, payload, created_at)
SELECT id, tx_hash, block_height, sender, recipient, payload, created_at FROM "transaction"
""")
# Drop old table and rename new one
op.execute("DROP TABLE transaction")
op.execute("ALTER TABLE transaction_new RENAME TO transaction")
op.execute('DROP TABLE "transaction"')
op.execute('ALTER TABLE "transaction_new" RENAME TO "transaction"')
# Recreate indexes
op.execute("CREATE UNIQUE INDEX ix_transaction_tx_hash ON transaction (tx_hash)")
op.execute("CREATE INDEX ix_transaction_block_height ON transaction (block_height)")
op.execute("CREATE INDEX ix_transaction_created_at ON transaction (created_at)")
op.execute('CREATE UNIQUE INDEX ix_transaction_tx_hash ON "transaction" (tx_hash)')
op.execute('CREATE INDEX ix_transaction_block_height ON "transaction" (block_height)')
op.execute('CREATE INDEX ix_transaction_created_at ON "transaction" (created_at)')
def downgrade():
@@ -55,7 +55,7 @@ def downgrade():
# Create new transaction table with old foreign key
op.execute("""
CREATE TABLE transaction_new (
CREATE TABLE "transaction_new" (
id INTEGER NOT NULL PRIMARY KEY,
tx_hash VARCHAR NOT NULL,
block_height INTEGER,
@@ -69,15 +69,15 @@ def downgrade():
# Copy data from old table
op.execute("""
INSERT INTO transaction_new (id, tx_hash, block_height, sender, recipient, payload, created_at)
SELECT id, tx_hash, block_height, sender, recipient, payload, created_at FROM transaction
INSERT INTO "transaction_new" (id, tx_hash, block_height, sender, recipient, payload, created_at)
SELECT id, tx_hash, block_height, sender, recipient, payload, created_at FROM "transaction"
""")
# Drop old table and rename new one
op.execute("DROP TABLE transaction")
op.execute("ALTER TABLE transaction_new RENAME TO transaction")
op.execute('DROP TABLE "transaction"')
op.execute('ALTER TABLE "transaction_new" RENAME TO "transaction"')
# Recreate indexes
op.execute("CREATE UNIQUE INDEX ix_transaction_tx_hash ON transaction (tx_hash)")
op.execute("CREATE INDEX ix_transaction_block_height ON transaction (block_height)")
op.execute("CREATE INDEX ix_transaction_created_at ON transaction (created_at)")
op.execute('CREATE UNIQUE INDEX ix_transaction_tx_hash ON "transaction" (tx_hash)')
op.execute('CREATE INDEX ix_transaction_block_height ON "transaction" (block_height)')
op.execute('CREATE INDEX ix_transaction_created_at ON "transaction" (created_at)')

View File

@@ -3,11 +3,22 @@ from __future__ import annotations
from contextlib import contextmanager
from sqlmodel import Session, SQLModel, create_engine
from sqlalchemy import event
from .config import settings
_engine = create_engine(f"sqlite:///{settings.db_path}", echo=False)
@event.listens_for(_engine, "connect")
def set_sqlite_pragma(dbapi_connection, connection_record):
cursor = dbapi_connection.cursor()
cursor.execute("PRAGMA journal_mode=WAL")
cursor.execute("PRAGMA synchronous=NORMAL")
cursor.execute("PRAGMA cache_size=-64000")
cursor.execute("PRAGMA temp_store=MEMORY")
cursor.execute("PRAGMA mmap_size=30000000000")
cursor.execute("PRAGMA busy_timeout=5000")
cursor.close()
def init_db() -> None:
settings.db_path.parent.mkdir(parents=True, exist_ok=True)