mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
10 lines
252 B
SQL
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
|
|
);
|