sqlalchemy.BLOB

Here are the examples of the python api sqlalchemy.BLOB taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: holmes-api Source File: 155c6ce689ed_converting_the_value_of_violations_and_.py
Function: upgrade
def upgrade():
    op.alter_column('facts', 'value', type_=sa.BLOB(length=4294967295), nullable=False)
    op.alter_column('violations', 'value', type_=sa.BLOB(length=4294967295), nullable=False)