mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
9 lines
230 B
SQL
9 lines
230 B
SQL
CREATE TABLE webptypos (
|
|
screenid varchar(36) NOT NULL,
|
|
lineid varchar(36) NOT NULL,
|
|
ptypos bigint NOT NULL,
|
|
PRIMARY KEY (screenid, lineid)
|
|
);
|
|
|
|
CREATE INDEX idx_screenupdate_ids ON screenupdate (screenid, lineid);
|