feat: GTSIT 사이트 구축

This commit is contained in:
박성필
2026-08-10 21:19:10 +09:00
commit dbb35d35c4
87 changed files with 48246 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
ALTER TABLE inquiries
ADD COLUMN IF NOT EXISTS closed_at DATETIME NULL AFTER replied_at,
ADD COLUMN IF NOT EXISTS lookup_failed_attempts TINYINT UNSIGNED NOT NULL DEFAULT 0 AFTER closed_at,
ADD COLUMN IF NOT EXISTS lookup_locked_until DATETIME NULL AFTER lookup_failed_attempts;
ALTER TABLE inquiries
DROP INDEX IF EXISTS idx_inquiries_retention,
ADD INDEX idx_inquiries_retention (closed_at, deleted_at);