Add new migration for new queries

This commit is contained in:
Simon Goller 2024-06-19 15:11:31 +02:00
parent d48c97edac
commit 0eb885216a
8 changed files with 114 additions and 40 deletions

View file

@ -0,0 +1,56 @@
{
"db_name": "SQLite",
"query": "SELECT id, name, background_color, is_paid, inactive, deleted, update_version FROM sales_person WHERE deleted IS NULL",
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Blob"
},
{
"name": "name",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "background_color",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "is_paid",
"ordinal": 3,
"type_info": "Bool"
},
{
"name": "inactive",
"ordinal": 4,
"type_info": "Bool"
},
{
"name": "deleted",
"ordinal": 5,
"type_info": "Text"
},
{
"name": "update_version",
"ordinal": 6,
"type_info": "Blob"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
false,
false,
false,
true,
false
]
},
"hash": "d3def7e134106943511da197ceda13c1871840fe64557dca0ff4381cffb1093f"
}