- database/schema/ 14개 DDL 파일 신규 생성 (운영 DB pg_dump 기반) - database/seed/ 14개 초기 데이터 파일 분리 - database/_deprecated/로 구 init.sql, auth_init.sql 이동 - database/README.md 신규 작성 (DB 아키텍처, 설치 절차) - docs/ 6개 가이드 문서 wing_auth→auth 스키마 구조로 수정 - README.md, CLAUDE.md wing 단일 DB 구조 반영 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
1.4 KiB
SQL
21 lines
1.4 KiB
SQL
-- WING-OPS Seed Data: Auth Settings
|
|
-- 시스템 설정 4건
|
|
-- 출처: database/auth_init.sql
|
|
|
|
INSERT INTO auth.auth_setting (setting_key, setting_val, setting_dc) VALUES
|
|
('registration.auto-approve',
|
|
'true',
|
|
'신규 사용자 자동 승인 여부 (true: 즉시 ACTIVE, false: PENDING 대기)'),
|
|
|
|
('registration.default-role',
|
|
'true',
|
|
'신규 사용자에게 기본 역할(dflt_yn=Y) 자동 할당 여부'),
|
|
|
|
('oauth.auto-approve-domains',
|
|
'gcsc.co.kr',
|
|
'OAuth 자동 승인 도메인 (쉼표 구분)'),
|
|
|
|
('menu.config',
|
|
'[{"id":"prediction","label":"유출유 확산예측","icon":"🛢️","enabled":true,"order":1},{"id":"hns","label":"HNS·대기확산","icon":"🧪","enabled":true,"order":2},{"id":"rescue","label":"긴급구난","icon":"🚨","enabled":true,"order":3},{"id":"reports","label":"보고자료","icon":"📊","enabled":true,"order":4},{"id":"aerial","label":"항공탐색","icon":"✈️","enabled":true,"order":5},{"id":"assets","label":"방제자산 관리","icon":"🚢","enabled":true,"order":6},{"id":"scat","label":"해안평가","icon":"🏖️","enabled":true,"order":7},{"id":"board","label":"게시판","icon":"📌","enabled":true,"order":8},{"id":"weather","label":"기상정보","icon":"⛅","enabled":true,"order":9},{"id":"incidents","label":"통합조회","icon":"🔍","enabled":true,"order":10}]',
|
|
'메뉴 표시 여부 및 순서 설정 (JSON 배열)');
|