11 lines
227 B
SQL
Executable File
11 lines
227 B
SQL
Executable File
-- This table will store processes --
|
|
|
|
CREATE TABLE IF NOT EXISTS {}(
|
|
worker_id INT UNIQUE NOT NULL,
|
|
start DATETIME NOT NULL, -- timestamps
|
|
end DATETIME NOT NULL,
|
|
status VARCHAR NOT NULL,
|
|
--OTHER_VM_DATA
|
|
|
|
)
|