Skip to content
Snippets Groups Projects
Commit 385399b2 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

add 'additional_info' and 'executor_id' columns to query_queryexecution table.

parent 4d8951cc
No related branches found
No related tags found
No related merge requests found
......@@ -1078,6 +1078,26 @@
"initiallyDeferred": false
}
}
},
{
"column": {
"name": "additional_info",
"type": "text",
"constraints": {"nullable": false}
}
},
{
"column": {
"name": "executor_id",
"type": "int",
"constraints": {
"nullable": false,
"references": "core_user(id)",
"foreignKeyName": "fk_queryexecution_ref_user_id",
"deferrable": false,
"initiallyDeferred": false
}
}
}
]
}
......@@ -1095,6 +1115,19 @@
]
}
},
{
"createIndex": {
"tableName": "query_queryexecution",
"indexName": "idx_queryexecution_executor_id",
"columns": [
{
"column": {
"name": "executor_id"
}
}
]
}
},
{
"createTable": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment