Files
njts-accounting-core/backend/sql/add_mynumber_to_dependents.sql
2026-01-22 01:16:54 +09:00

5 lines
242 B
SQL
Raw 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.
-- マイナンバーカード番号カラムを扶養家族テーブルに追加
ALTER TABLE dependents ADD COLUMN IF NOT EXISTS mynumber VARCHAR(12);
COMMENT ON COLUMN dependents.mynumber IS 'マイナンバーカード番号12桁';