6 lines
307 B
MySQL
6 lines
307 B
MySQL
|
|
-- Migration V4: Add responsible_department to permit_theme_rules
|
||
|
|
ALTER TABLE public.permit_theme_rules
|
||
|
|
ADD COLUMN IF NOT EXISTS responsible_department text;
|
||
|
|
|
||
|
|
COMMENT ON COLUMN public.permit_theme_rules.responsible_department IS 'All levels of approval departments in the city (全市各级审批部门)';
|