createPendingEspeciesExpedienteTable top-level constant

String const createPendingEspeciesExpedienteTable

Implementation

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