docs: add work log for 2026-06-15 and update DB deletion policy in README

This commit is contained in:
2026-06-15 11:47:46 +09:00
parent 55c43aa250
commit b9d28736e2
26 changed files with 1112 additions and 0 deletions

6
scratch/peek_excel.cjs Normal file
View File

@@ -0,0 +1,6 @@
const XLSX = require('xlsx');
const workbook = XLSX.readFile('system_User (20260615).xlsx');
const sheetName = workbook.SheetNames[0];
const sheet = workbook.Sheets[sheetName];
const data = XLSX.utils.sheet_to_json(sheet, { header: 1 });
console.log(JSON.stringify(data.slice(0, 5), null, 2));