waveterm/db/migrations-wstore/000004_history.up.sql
2024-09-05 14:05:42 -07:00

10 lines
252 B
SQL

CREATE TABLE history_migrated (
historyid varchar(36) PRIMARY KEY,
ts bigint NOT NULL,
remotename varchar(200) NOT NULL,
haderror boolean NOT NULL,
cmdstr text NOT NULL,
exitcode int NULL DEFAULT NULL,
durationms int NULL DEFAULT NULL
);