Description
noneTable properties
| name | value |
|---|
| name | ml_server.ml_server |
| row count | |
| Maximum size of a single row | 2,238 bytes |
Columns
| column | datatype | length | default | nulls | PK | FK | UQ | comment |
|---|
| server_id | integer | 4 | autoincrement | no
| yes
| |
| |
| name | varchar(128) | 128 | | no
|
| |
| |
| version | varchar(10) | 10 | | no
|
| |
| |
| connection_info | varchar(2048) | 2048 | | no
|
| |
| |
| instance_key | binary | 32 | | no
|
| |
| |
| start_time | timestamp | 8 | current timestamp | no
|
| |
| |
| liveness | timestamp | 8 | current timestamp | no
|
| |
| |
Indexes
Referenced by
Foreign key graph
Dependency graph
Objects that depend on ml_server.ml_server
Code
CREATE TABLE "ml_server"."ml_server" (
"server_id" integer NOT NULL DEFAULT autoincrement
,"name" varchar(128) NOT NULL
,"version" varchar(10) NOT NULL
,"connection_info" varchar(2048) NOT NULL
,"instance_key" binary(32) NOT NULL
,"start_time" timestamp NOT NULL DEFAULT current timestamp
,"liveness" timestamp NOT NULL DEFAULT current timestamp
,PRIMARY KEY ("server_id")
)