chore: 初始化仓库
中华文明全图鉴——文物全图系统(PC Web 地图 + NestJS API + 管理后台)。 含三大 IP(文物南迁北归 / 国宝海外回归 / 博物馆手艺人)、AI 文物对话、 文物地图与详情、以及 demo-video-kit 演示视频生成工具。
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
INSERT INTO institutions (id, name, short_name, institution_type, country, province, city, address,
|
||||
location, is_verified, publish_status) VALUES
|
||||
(
|
||||
'a0000000-0000-0000-0000-000000000001',
|
||||
'故宫博物院', '故宫', 'museum', '中国', '北京市', '北京',
|
||||
'北京市东城区景山前街4号',
|
||||
ST_SetSRID(ST_MakePoint(116.3972, 39.9163), 4326)::geography,
|
||||
true, 'published'
|
||||
),
|
||||
(
|
||||
'a0000000-0000-0000-0000-000000000002',
|
||||
'国家博物馆', '国博', 'museum', '中国', '北京市', '北京',
|
||||
'北京市东城区东长安街16号',
|
||||
ST_SetSRID(ST_MakePoint(116.4074, 39.9052), 4326)::geography,
|
||||
true, 'published'
|
||||
),
|
||||
(
|
||||
'a0000000-0000-0000-0000-000000000003',
|
||||
'上海博物馆', '上博', 'museum', '中国', '上海市', '上海',
|
||||
'上海市黄浦区人民大道201号',
|
||||
ST_SetSRID(ST_MakePoint(121.4737, 31.2293), 4326)::geography,
|
||||
true, 'published'
|
||||
)
|
||||
ON CONFLICT (id) DO NOTHING;
|
||||
Reference in New Issue
Block a user