Description
noneTable properties
| name | value |
|---|
| name | ml_server.ml_passthrough |
| row count | |
| Maximum size of a single row | 144 bytes |
Columns
| column | datatype | length | default | nulls | PK | FK | UQ | comment |
|---|
| remote_id | varchar(128) | 128 | | no
| composite PK
| ml_database.remote_id
|
| |
| run_order | integer | 4 | | no
| composite PK
| |
| |
| script_id | integer | 4 | | no
|
| ml_passthrough_script.script_id
|
| |
| last_modified | timestamp | 8 | current timestamp | no
|
| |
| |
References
Foreign key graph
Foreign keys
Triggers
Dependency graph
Objects that depend on ml_server.ml_passthrough
Code
CREATE TABLE "ml_server"."ml_passthrough_script" (
"script_id" integer NOT NULL DEFAULT autoincrement
,"script_name" varchar(128) NOT NULL
,"flags" varchar(256) NULL
,"affected_pubs" "text" NULL
,"script" "text" NOT NULL
,"description" varchar(2000) NULL
,PRIMARY KEY ("script_id")
)