topfans/docker/sql/migrations/V2__add_deleted_at_to_exhibitions.sql
2026-04-24 18:04:55 +08:00

4 lines
178 B
SQL

-- V2__add_deleted_at_to_exhibitions.sql
-- 为 exhibitions 表添加 deleted_at 字段(软删除)
ALTER TABLE public.exhibitions ADD COLUMN IF NOT EXISTS deleted_at bigint;