fix: [schema] audit_logs.authkey_id columns should be nullable

pull/7620/head
Jakub Onderka 2021-08-03 14:04:18 +02:00
parent ebdde921a2
commit d5a425994f
1 changed files with 2 additions and 2 deletions

View File

@ -431,13 +431,13 @@
}, },
{ {
"column_name": "authkey_id", "column_name": "authkey_id",
"is_nullable": "NO", "is_nullable": "YES",
"data_type": "int", "data_type": "int",
"character_maximum_length": null, "character_maximum_length": null,
"numeric_precision": "10", "numeric_precision": "10",
"collation_name": null, "collation_name": null,
"column_type": "int(11)", "column_type": "int(11)",
"column_default": null, "column_default": "NULL",
"extra": "" "extra": ""
}, },
{ {