4 lines
178 B
SQL
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; |