createEspeciesExpedienteTable top-level constant
Implementation
const String createEspeciesExpedienteTable = '''
CREATE TABLE especies_expediente (
id TEXT PRIMARY KEY,
expediente_id TEXT,
ep_especie_id TEXT,
cantidad_autorizada INTEGER,
cantidad_remanentes INTEGER,
cantidad_aprovechable INTEGER,
CM INTEGER,
RM INTEGER,
cantidad_placas INTEGER,
created TEXT,
updated TEXT
)
''';