- 在editStorageForm中初始化oss_storage_quota_value和oss_quota_unit - 删除重复的旧配额说明块,保留新的当前配额设置显示 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
1014 B
JavaScript
35 lines
1014 B
JavaScript
const { db } = require('./database');
|
|
|
|
console.log('开始修复 expires_at 格式...\n');
|
|
|
|
// 查找所有有过期时间的分享
|
|
const shares = db.prepare(`
|
|
SELECT id, share_code, expires_at
|
|
FROM shares
|
|
WHERE expires_at IS NOT NULL
|
|
`).all();
|
|
|
|
console.log(`找到 ${shares.length} 条需要修复的记录\n`);
|
|
|
|
let fixed = 0;
|
|
const updateStmt = db.prepare('UPDATE shares SET expires_at = ? WHERE id = ?');
|
|
|
|
shares.forEach(share => {
|
|
const oldFormat = share.expires_at;
|
|
|
|
// 如果是ISO格式(包含T和Z),需要转换
|
|
if (oldFormat.includes('T') || oldFormat.includes('Z')) {
|
|
// 转换为 SQLite datetime 格式: YYYY-MM-DD HH:MM:SS
|
|
const newFormat = oldFormat.replace('T', ' ').replace(/\.\d+Z$/, '');
|
|
|
|
updateStmt.run(newFormat, share.id);
|
|
fixed++;
|
|
|
|
console.log(`✓ 修复分享 ${share.share_code}:`);
|
|
console.log(` 旧格式: ${oldFormat}`);
|
|
console.log(` 新格式: ${newFormat}\n`);
|
|
}
|
|
});
|
|
|
|
console.log(`\n修复完成! 共修复 ${fixed} 条记录`);
|