This commit is contained in:
张成
2026-04-01 14:23:57 +08:00
parent 09368d2a95
commit 084c437096
8 changed files with 268 additions and 2 deletions

View File

@@ -32,6 +32,10 @@ module.exports = (db) => {
allowNull: false,
defaultValue: 0,
},
response_body: {
type: Sequelize.TEXT,
allowNull: true,
},
call_date: {
type: Sequelize.DATEONLY,
allowNull: false,
@@ -50,6 +54,6 @@ module.exports = (db) => {
}
);
//biz_api_call_log.sync({ force: true });
//biz_api_call_log.sync({ force: true });
return biz_api_call_log;
};