relstorage.adapters.sqlite.schema

class Sqlite3SchemaInstaller(driver, oid_allocator, **kwargs)[source]

Bases: AbstractSchemaInstaller

drop_all()[source]

Drop all tables and sequences.

COLTYPE_BINARY_STRING = 'BLOB'

The type of the column used to hold binary strings. Our default is appropriate for PostgreSQL.

COLTYPE_BLOB_CHUNK = 'BLOB'

The type of the column used to store blob chunks.

COLTYPE_BLOB_CHUNK_NUM = 'INTEGER'

The type of the column used to number blob chunks.

COLTYPE_MD5 = 'BLOB'

The type of the column used to store MD5 hash strings.

COLTYPE_OID_TID = 'INTEGER'

The type of the column used to hold transaction IDs and object IDs (64-bit integers).