Files
tryton-db-migration/data/5.2/res.json
T

92 lines
2.6 KiB
JSON
Raw Normal View History

2026-08-08 01:29:43 +02:00
{
"version": "5.2",
"module": "res",
"files": [
{
"module": "res",
"file": "user.py",
2026-08-08 01:29:43 +02:00
"class": "User",
"method": "__register__",
"line": 194,
"operations": [
{
"object": "cursor",
"operation": "execute",
"tables": [
"res_user"
],
2026-08-08 01:29:43 +02:00
"line": 204,
"args": [
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
],
"kwargs": {},
2026-08-09 00:47:23 +02:00
"code": "(Transaction().connection.cursor()).execute(*sqltable.update(\n columns=[sqltable.password_hash],\n values=[password_hash_new]))",
2026-08-08 01:29:43 +02:00
"phase": "after_super",
"condition": "table.column_exist('password') and table.column_exist('salt')"
},
{
"object": "sqltable",
"operation": "update",
"tables": [
"res_user"
],
2026-08-08 01:29:43 +02:00
"line": 204,
"args": [],
"kwargs": {
"columns": "[sqltable.password_hash]",
"values": "[password_hash_new]"
},
2026-08-09 00:47:23 +02:00
"code": "sqltable.update(\n columns=[sqltable.password_hash],\n values=[password_hash_new])",
2026-08-08 01:29:43 +02:00
"phase": "after_super",
"condition": "table.column_exist('password') and table.column_exist('salt')"
},
{
"object": "table",
"operation": "drop_column",
"tables": [
"res_user"
],
2026-08-08 01:29:43 +02:00
"line": 207,
"args": [
"'password'"
],
"kwargs": {},
"code": "table.drop_column('password')",
"phase": "after_super",
"condition": "table.column_exist('password') and table.column_exist('salt')"
},
{
"object": "table",
"operation": "drop_column",
"tables": [
"res_user"
],
2026-08-08 01:29:43 +02:00
"line": 208,
"args": [
"'salt'"
],
"kwargs": {},
"code": "table.drop_column('salt')",
"phase": "after_super",
"condition": "table.column_exist('password') and table.column_exist('salt')"
},
{
"object": "table",
"operation": "not_null_action",
"tables": [
"res_user"
],
2026-08-08 01:29:43 +02:00
"line": 211,
"args": [
"'name'"
],
"kwargs": {
"action": "'remove'"
},
"code": "table.not_null_action('name', action='remove')",
"phase": "after_super"
}
]
}
]
}