rwadurian/backend/services/identity-service/database/init.sql

8 lines
298 B
SQL

-- ============================================
-- Identity Context 数据库初始化 (PostgreSQL)
-- ============================================
-- 初始化账户序列号生成器
INSERT INTO account_sequence_generator (id, current_sequence) VALUES (1, 0)
ON CONFLICT (id) DO NOTHING;