add dml data
This commit is contained in:
parent
b22a41a913
commit
fe3dc59baa
|
|
@ -1,3 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
-- supported attribute group
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
BASIC.ATTRIBUTE_GROUP (GROUP_TYPE, GROUP_NAME, IS_PUBLIC, REMARK)
|
BASIC.ATTRIBUTE_GROUP (GROUP_TYPE, GROUP_NAME, IS_PUBLIC, REMARK)
|
||||||
VALUES
|
VALUES
|
||||||
|
|
@ -13,6 +16,7 @@ VALUES
|
||||||
('behavior','行为信息',0,'');
|
('behavior','行为信息',0,'');
|
||||||
|
|
||||||
|
|
||||||
|
-- supported data type
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
BASIC.DATA_TYPE (DATA_TYPE, DATABASE_TYPE)
|
BASIC.DATA_TYPE (DATA_TYPE, DATABASE_TYPE)
|
||||||
VALUES
|
VALUES
|
||||||
|
|
@ -35,4 +39,24 @@ VALUES
|
||||||
('UUID','postgres'),
|
('UUID','postgres'),
|
||||||
('JSON','postrges'),
|
('JSON','postrges'),
|
||||||
('JSONB','postgres'),
|
('JSONB','postgres'),
|
||||||
('polar_coordinates','postgres');
|
('polar_coordinates','postgres');
|
||||||
|
|
||||||
|
|
||||||
|
-- supported standard component type
|
||||||
|
INSERT INTO
|
||||||
|
BASIC.COMPONENT_TYPE (TYPE, NAME, CONFIG)
|
||||||
|
VALUES
|
||||||
|
('bus','母线段','{}'),
|
||||||
|
('asyncmotor','异步电动机','{}'),
|
||||||
|
('cb','断路器','{}'),
|
||||||
|
('ct','电流互感器','{}'),
|
||||||
|
('pt','电压互感器','{}'),
|
||||||
|
('es','接地开关','{}'),
|
||||||
|
('fes','快速接地开关','{}'),
|
||||||
|
('cable','电缆','{}'),
|
||||||
|
('ds','隔离开关','{}'),
|
||||||
|
('dteds','双掷接地隔离开关','{}'),
|
||||||
|
('potential_indicator','带电指示器','{}'),
|
||||||
|
('lightning_arrester','避雷器','{}'),
|
||||||
|
('cable_termination','电缆出线套筒','{}'),
|
||||||
|
('cable_end','电缆端','{}');
|
||||||
Loading…
Reference in New Issue