CREATE TABLE faturamento (
id INTEGER PRIMARY KEY AUTOINCREMENT,
data TEXT,
ticket TEXT,
transportadora TEXT,
produto TEXT,
peso REAL,
tempo_faturamento TEXT
);
CREATE TABLE pesagem (
id INTEGER PRIMARY KEY AUTOINCREMENT,
data TEXT,
placa TEXT,
peso_entrada REAL,
peso_saida REAL,
tempo_no_patio TEXT
);
CREATE TABLE biometria (
id INTEGER PRIMARY KEY AUTOINCREMENT,
colaborador TEXT,
turno TEXT,
entrada TEXT,
saida TEXT
);
To embed this project on your website, copy the following code and paste it into your website's HTML: