Files
ai-showcase-platform/database-awards-extension.sql

28 lines
957 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- =====================================================
-- 擴展 awards 表結構
-- 添加缺少的欄位以支持完整的獎項功能
-- =====================================================
-- 添加獎項描述欄位
ALTER TABLE `awards`
ADD COLUMN `description` TEXT NULL COMMENT '獎項描述' AFTER `category`;
-- 添加評審評語欄位
ALTER TABLE `awards`
ADD COLUMN `judge_comments` TEXT NULL COMMENT '評審評語' AFTER `description`;
-- 添加應用連結欄位JSON 格式)
ALTER TABLE `awards`
ADD COLUMN `application_links` JSON NULL COMMENT '應用連結' AFTER `judge_comments`;
-- 添加相關文檔欄位JSON 格式)
ALTER TABLE `awards`
ADD COLUMN `documents` JSON NULL COMMENT '相關文檔' AFTER `application_links`;
-- 添加得獎照片欄位JSON 格式)
ALTER TABLE `awards`
ADD COLUMN `photos` JSON NULL COMMENT '得獎照片' AFTER `documents`;
-- 驗證欄位是否添加成功
DESCRIBE `awards`;