createPendingEspeciesExpedienteTable top-level constant
Implementation
const String createPendingEspeciesExpedienteTable = '''
CREATE TABLE pending_especies_expediente (
id INTEGER PRIMARY KEY AUTOINCREMENT,
data TEXT NOT NULL,
timestamp INTEGER NOT NULL
)
''';