Change to largebinary type in migrations

This commit is contained in:
nolash 2021-02-23 06:39:52 +01:00
parent c79224cf7b
commit 4b8d031b6c
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,10 @@ def r0_0_1_u():
'chain_sync_filter',
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('chain_sync_id', sa.Integer, sa.ForeignKey('chain_sync.id'), nullable=True),
sa.Column('flags', sa.BLOB, nullable=True),
sa.Column('flags_start', sa.BLOB, nullable=True),
sa.Column('flags', sa.LargeBinary, nullable=True),
sa.Column('flags_start', sa.LargeBinary, nullable=True),
sa.Column('count', sa.Integer, nullable=False, default=0),
sa.Column('digest', sa.BLOB, nullable=False),
sa.Column('digest', sa.String(64), nullable=False),
)
def r0_0_1_d():

View File

@ -3,4 +3,4 @@ SQLAlchemy==1.3.20
confini~=0.3.6b2
semver==2.13.0
hexathon~=0.0.1a3
chainlib~=0.0.1a15
chainlib~=0.0.1a17