home / civic

Menu
  • Log in

overseas_trips

Data license: 비공개

✎ View and edit SQL

This data as json

0 records

CREATE TABLE overseas_trips (
    id              INTEGER PRIMARY KEY AUTOINCREMENT,
    source          TEXT NOT NULL,
    source_id       TEXT,
    region          TEXT,
    org             TEXT,
    trip_year       INTEGER,
    departure_date  TEXT,
    return_date     TEXT,
    nights          INTEGER,                 -- 숙박 일수
    destination     TEXT,                    -- 방문 국가/도시
    purpose         TEXT,                    -- 연수 목적
    total_amount    INTEGER,                 -- 전체 예산 (원)
    participant_count INTEGER,               -- 총 참가 인원
    report_filed    INTEGER DEFAULT 0,       -- 보고서 제출 여부 (0/1)
    report_date     TEXT,                    -- 보고서 제출일
    extra           TEXT,                    -- JSON
    collect_method  TEXT DEFAULT 'api',
    collected_at    TEXT NOT NULL,
    UNIQUE(source, source_id)
);
Powered by Datasette · Queries took 52.887ms · Data license: 비공개