9 lines
197 B
SQL
9 lines
197 B
SQL
CREATE TABLE `machines` (
|
|
`host` text DEFAULT '127.0.0.1' NOT NULL,
|
|
`id` text PRIMARY KEY,
|
|
`name` text,
|
|
`order` integer UNIQUE,
|
|
`port` integer DEFAULT 9999 NOT NULL,
|
|
`token` text NOT NULL
|
|
);
|