10 lines
205 B
SQL
Executable File
10 lines
205 B
SQL
Executable File
-- This table will store consumer/worker info/configurations
|
|
|
|
-- some info about workers
|
|
CREATE TABLE IF NOT EXISTS worker(
|
|
worker_id INT UNIQUE NOT NULL,
|
|
status VARCHAR NOT NULL,
|
|
--OTHER_DATA
|
|
|
|
)
|