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