迁移时间字段应为 migration_time

This commit is contained in:
yourname
2025-05-13 12:10:28 +00:00
parent 7c4890d83f
commit 641bccfe2e

View File

@@ -82,9 +82,9 @@ const MigrationsApp: React.FC = () => {
},
{
title: '时间',
dataIndex: 'timestamp',
key: 'timestamp',
render: (timestamp: string) => dayjs(timestamp).format('YYYY-MM-DD HH:mm:ss')
dataIndex: 'migration_time',
key: 'migration_time',
render: (migration_time: string) => dayjs(migration_time).format('YYYY-MM-DD HH:mm:ss')
},
];