-- 插入超級管理員帳號 -- 密碼 'abc123' 使用 bcrypt 加密 INSERT INTO `admins` (`username`, `password`, `role`, `created_at`, `updated_at`) VALUES ( 'admin', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', -- 'abc123' 的 bcrypt hash 'super', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP );