[BE-database] Modify DatabaseType table property - remove unique key
This commit is contained in:
@@ -1,22 +1,21 @@
|
||||
import {Column, Entity, PrimaryGeneratedColumn} from "typeorm";
|
||||
import {BaseEntity} from "../../common/entities/base.entity";
|
||||
import {YesNo} from "../../common/enum/yn.enum";
|
||||
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
||||
import { BaseEntity } from '../../common/entities/base.entity';
|
||||
import { YesNo } from '../../common/enum/yn.enum';
|
||||
|
||||
@Entity('databaseType')
|
||||
export class DatabaseType extends BaseEntity {
|
||||
@PrimaryGeneratedColumn({comment: 'database type ID'})
|
||||
id: number
|
||||
@PrimaryGeneratedColumn({ comment: 'database type ID' })
|
||||
id: number;
|
||||
|
||||
@Column({unique: true, length: 45, comment: '타입 코드'})
|
||||
type: string
|
||||
@Column({ length: 45, comment: '타입 코드' })
|
||||
type: string;
|
||||
|
||||
@Column({length: 100, comment: '타입명'})
|
||||
title: string
|
||||
@Column({ length: 100, comment: '타입명' })
|
||||
title: string;
|
||||
|
||||
@Column({comment: '순서', nullable: true})
|
||||
seq: number
|
||||
@Column({ comment: '순서', nullable: true })
|
||||
seq: number;
|
||||
|
||||
@Column({length: 1, comment: '사용여부', default: YesNo.YES})
|
||||
useYn: YesNo
|
||||
|
||||
}
|
||||
@Column({ length: 1, comment: '사용여부', default: YesNo.YES })
|
||||
useYn: YesNo;
|
||||
}
|
||||
|
||||
@@ -1,40 +1,53 @@
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 19:55:38', '2022-10-11 11:03:28.774378', 1, 'CHART_LINE', '선형 차트', 'Line Chart', 'LINE', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.111257', '2022-10-11 11:03:29.012271', 2, 'CHART_AREA', '영역형 차트', 'Area Chart', 'AREA', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.129862', '2022-10-14 16:08:35.880890', 3, 'CHART_BAR', '세로 막대형 차트', 'Bar Chart', 'BAR', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.147718', '2022-10-14 16:08:35.903814', 4, 'CHART_COLUMN', '가로 막대형 차트', 'Column Chart', 'BAR', '{"title":"","yField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.165671', '2022-10-11 11:03:28.903132', 5, 'CHART_MIXED_LINE_BAR', '복합형 차트', 'Mixed Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum","type":"line"},{"field":"","color":"#47a8ea","aggregation":"sum","type":"bar"}],"legendPosition":""}', 'icon/ct-bar-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.183978', '2022-10-11 11:03:28.937662', 6, 'CHART_PIE', '원형 차트', 'Pie Chart', 'PIE', '{"title":"","series":{"field":"","color":[],"aggregation":"sum","name":""},"legendPosition":""}', 'icon/ct-pie.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.201009', '2022-10-11 11:03:28.964198', 7, 'CHART_NIGHTINGALE', '나이팅게일 차트', 'Nightingale Chart', 'PIE', '{"title":"","series":{"field":"","color":[],"aggregation":"sum","name":"","radius":["10%","90%"]},"legendPosition":""}', 'icon/ct-nightingale.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.218438', '2022-10-11 11:03:28.853730', 8, 'CHART_BUBBLE', '거품형 차트', 'Bubble Chart', 'SCATTER', '{"title":"","series":[{"title":"","xField":"","yField":"","symbolSize":"","color":"#2870c5"}],"legendPosition":""}', 'icon/ct-bubble.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.235656', '2022-10-11 11:03:28.815733', 9, 'CHART_RADAR', '방사형 차트', 'Radar Chart', 'RADAR', '{"title":"","field":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-radar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.253510', '2022-10-11 11:03:29.043597', 10, 'CHART_SCATTER', '분산형 차트', 'Scatter Chart', 'SCATTER', '{"title":"","series":[{"title":"","xField":"","yField":"","symbolSize":"20","color":"#2870c5"}],"legendPosition":""}', 'icon/ct-scatter.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 19:48:20', '2022-10-11 11:07:01.313797', 11, 'CHART_DONUT', '도넛형 차트', 'Donut Chart', 'PIE', '{"title":"","series":{"field":"","color":[],"aggregation":"sum","name":"","radius":["30%","75%"]},"legendPosition":""}', 'icon/ct-donut.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:13.436536', '2022-10-11 11:07:01.053555', 12, 'BOARD_NUMERIC', '숫자판', 'Score Board', 'ETC', '{"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"field":null,"aggregation":"sum","fontSize":20,"color":"#4A4A4A","prefix":"","suffix":""}}', 'icon/ct-score.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:34.693945', '2022-10-11 11:07:01.072979', 13, 'BOARD_TABLE', '표', 'Data Grid', 'ETC', '{"columns":[]}', 'icon/ct-data.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:34.783042', '2022-10-11 11:07:01.176117', 14, 'CHART_STACKED_LINE', '누적 선형 차트', 'Stacked Line Chart', 'LINE', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-stacked-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:35.033840', '2022-10-11 11:07:01.335155', 15, 'CHART_STACKED_AREA', '누적 영역형 차트', 'Stacked Area Chart', 'AREA', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-stacked-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:58:46.125790', '2022-10-14 16:08:35.852453', 16, 'CHART_STACKED_COLUMN', '누적 가로 막대형 차트', 'Stacked Column Chart', 'BAR', '{"title":"","yField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-stacked-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 11:02:11.889462', '2022-10-14 16:08:35.927216', 17, 'CHART_STACKED_BAR', '누적 세로 막대형 차트', 'Stacked Bar Chart', 'BAR', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:26:41.497188', '2022-10-14 15:46:08.941388', 19, 'CHART_TREEMAP', '트리맵 차트', 'Treemap Chart', 'TREEMAP', '{"title":"","series":{"field":"","color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum","name":""}}', 'icon/ct-treemap.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:27:25.459299', '2022-10-11 11:07:25.204108', 20, 'CHART_CANDLESTICK', '캔들스틱 차트', 'Candlestick Chart', 'CANDLESTICK', '{"title":"","xField":"","series":[{"field":"","color":"#FA5A5A","aggregation":"sum"},{"field":"","color":"#2870C4","aggregation":"sum"},{"field":"","color":"#E03B3B","aggregation":"sum"},{"field":"","color":"#215DA3","aggregation":"sum"}],"legendPosition":""}', 'icon/ct-candle.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:30:15.042412', '2022-10-11 11:07:01.246008', 21, 'CHART_GAUGE', '계기판 차트', 'Gauge Chart', 'GAUGE', '{"title":"","field":"","color":"#2870c5","aggregation":"sum","suffix":""}', 'icon/ct-gauge.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-04 16:53:01.371721', '2022-10-14 15:46:08.909344', 22, 'CHART_SUNBURST', '선버스트 차트', 'Sunburst Chart', 'TREEMAP', '{"title":"","series":{"field":"","color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum","name":""}}', 'icon/ct-sunburst.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-05 14:45:50.362534', '2022-10-14 15:46:09.026073', 23, 'CHART_HEATMAP', '히트맵 차트', 'Heatmap Chart', 'HEATMAP', '{"title":"","xField":"","yField":"","series":"","color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum"}', 'icon/ct-heatmap.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-05 15:06:18.415655', '2022-10-11 11:07:01.221918', 24, 'CHART_FUNNEL', '깔때기형 차트', 'Funnel Chart', 'FUNNEL', '{"title":"","series":{"field":"","color":[],"aggregation":"sum","name":""},"legendPosition":""}', 'icon/ct-funnel.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-07 18:02:26.568254', '2022-10-14 16:09:49.915372', 25, 'CHART_3D_BAR', '3D 막대형 차트', '3D Bar Chart', '3D', '{"title":"","xField":"","series":[{"field":"","aggregation":"sum"}],"color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"]}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-12 16:45:23.767491', '2022-10-14 16:09:49.965900', 26, 'CHART_3D_LINE', '3D 선형 차트', '3D Line Chart', '3D', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-13 11:23:31.980147', '2022-10-14 16:09:49.943901', 27, 'CHART_3D_SCATTER', '3D 분산형 차트', '3D Scatter Chart', '3D', '{"title":"","series":[{"title":"","xField":"","yField":"","zField":"","symbolSize":"20","color":"#2870c5"}],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-13 21:23:06.474435', '2022-10-14 16:09:50.015379', 28, 'CHART_3D_BUBBLE', '3D 거품형 차트', '3D Bubble Chart', '3D', '{"title":"","series":[{"title":"","xField":"","yField":"","zField":"","symbolSize":"","color":"#2870c5"}],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 14:50:41.667043', '2022-10-14 21:39:29.874649', 29, 'CHART_WATERFALL_BAR', '폭포수 세로 차트', 'Waterfall Bar Chart', 'BAR', '{"title":"","xField":"","series":[{"field":"","aggregation":"sum"}],"color":["#2870c4","#fa5a5a"],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 14:53:02.853952', '2022-10-14 21:39:29.899883', 30, 'CHART_WATERFALL_COLUMN', '폭포수 가로 차트', 'Waterfall Column Chart', 'BAR', '{"title":"","yField":"","series":[{"field":"","aggregation":"sum"}],"color":["#2870c4","#fa5a5a"],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 15:21:20.186899', '2022-10-14 23:40:31.490277', 31, 'CHART_POLAR_BAR', '극좌표 막대형 차트', 'Polar Bar Chart', 'BAR', '{"title":"","axisField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"radius":["10%","75%"],"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 16:07:18.347330', '2022-10-15 20:50:59.453903', 32, 'CHART_MIXED_LINE_PIE', '선형과 원형 복합 차트', 'Mixed Line and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-15 20:09:47.754250', '2022-10-15 20:09:47.754250', 33, 'CHART_POLAR_STACKED_BAR', '극좌표 누적 막대형 차트', 'Polar Stacked Bar Chart', 'BAR', '{"title":"","axisField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"radius":["10%","75%"],"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:22:43.859648', '2022-10-17 16:22:43.859648', 34, 'CHART_MIXED_AREA_PIE', '영역형과 원형 복합 차트', 'Mixed Area and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:23:33.681125', '2022-10-17 16:55:23.797335', 35, 'CHART_MIXED_BAR_PIE', '세로 막대형과 원형 복합 차트', 'Mixed Bar and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:24:04.783798', '2022-10-17 16:24:04.783798', 36, 'CHART_MIXED_COLUMN_PIE', '가로 막대형과 원형 복합 차트', 'Mixed Column and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:34:32.081057', '2022-10-17 16:34:32.081057', 37, 'CHART_MIXED_STACKED_BAR_PIE', '누적 세로 막대형과 원형 복합 차트', 'Mixed Stacked-Bar and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:35:01.816820', '2022-10-17 16:35:01.816820', 38, 'CHART_MIXED_STACKED_COLUMN_PIE', '누적 가로 막대형과 원형 복합 차트', 'Mixed Stacked-Column and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:00:01.525246', '2022-10-17 17:00:01.525246', 39, 'CHART_MIXED_STACKED_LINE_PIE', '누적 선형과 원형 복합 차트', 'Mixed Stacked-Line and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:00:18.251377', '2022-10-17 17:00:18.251377', 40, 'CHART_MIXED_STACKED_AREA_PIE', '누적 영역형과 원형 복합 차트', 'Mixed Stacked-Area and Pie Chart', 'MIXED', '{"title":"","xField":"","series":[{"field":"","color":"#2870c5","aggregation":"sum"}],"pie":{"field":"","color":[],"center":["75%","35%"],"radius":"20%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:36:30.244205', '2022-10-18 15:19:10.964257', 41, 'CHART_MIXED_DONUT_PIE', '도넛형과 원형 복합 차트', 'Mixed Donut and Pie Chart', 'MIXED', '{"title":"","series":{"field":"","color":[],"aggregation":"sum","name":"","radius":["45%","60%"]},"pie":{"field":"","color":[],"radius":"30%","name":"","aggregation":"sum"},"legendPosition":""}', null, null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 19:55:38', '2022-10-30 18:48:55.831289', 1, 'CHART_LINE', '선형 차트', 'Line Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true}', 'icon/ct-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.111257', '2022-10-30 18:49:50.973416', 2, 'CHART_AREA', '영역형 차트', 'Area Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true}', 'icon/ct-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.129862', '2022-10-30 18:49:50.936646', 3, 'CHART_BAR', '세로 막대형 차트', 'Bar Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true}', 'icon/ct-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.147718', '2022-10-30 18:49:50.857851', 4, 'CHART_COLUMN', '가로 막대형 차트', 'Column Chart', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true}', 'icon/ct-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.165671', '2022-10-30 20:07:43.930140', 5, 'MIXED_CHART_LINE_BAR', '선형과 세로 막대형 복합 차트', 'Mixed Line and Bar Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum","type":"line"},{"color":"#47a8ea","aggregation":"sum","type":"bar"}],"label":true}', 'icon/ct-mixed-line-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.183978', '2022-10-30 18:52:31.905793', 6, 'CHART_PIE', '원형 차트', 'Pie Chart', 'SQUARE', '{"series":{"color":[],"aggregation":"sum","label":"{b}"}}', 'icon/ct-pie.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.201009', '2022-10-30 19:10:24.623682', 7, 'CHART_NIGHTINGALE', '나이팅게일 차트', 'Nightingale Chart', 'SQUARE', '{"series":{"color":[],"aggregation":"sum","label":"{b}","radius":["20%","75%"]}}', 'icon/ct-nightingale.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.218438', '2022-10-30 19:06:52.382598', 8, 'CHART_BUBBLE', '거품형 차트', 'Bubble Chart', 'SQUARE', '{"series":[{"color":"#6aa7eb"}]}', 'icon/ct-bubble.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.235656', '2022-10-30 19:09:09.110617', 9, 'CHART_RADAR', '방사형 차트', 'Radar Chart', 'SQUARE', '{"series":[{"color":"#2870c5","aggregation":"sum"}]}', 'icon/ct-radar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 15:16:18.253510', '2022-10-30 19:09:09.072634', 10, 'CHART_SCATTER', '분산형 차트', 'Scatter Chart', 'SQUARE', '{"series":[{"symbolSize":"20","color":"#6aa7eb"}]}', 'icon/ct-scatter.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-28 19:48:20', '2022-10-30 19:09:09.043453', 11, 'CHART_DONUT', '도넛형 차트', 'Donut Chart', 'SQUARE', '{"series":{"color":[],"aggregation":"sum","label":"{b}","radius":["30%","75%"]}}', 'icon/ct-donut.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:13.436536', '2022-10-30 20:24:13.982774', 12, 'BOARD_NUMERIC', '숫자판', 'Score Board', 'SCORE', '{"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:34.693945', '2022-10-28 11:53:43.353546', 13, 'BOARD_TABLE', '표', 'Data Grid', 'TABLE', '{"columns":[]}', 'icon/ct-grid.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:34.783042', '2022-10-30 19:12:18.644118', 14, 'CHART_STACKED_LINE', '누적 선형 차트', 'Stacked Line Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-stacked-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:51:35.033840', '2022-10-30 19:13:31.989376', 15, 'CHART_STACKED_AREA', '누적 영역형 차트', 'Stacked Area Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-stacked-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 10:58:46.125790', '2022-10-30 19:13:31.959166', 16, 'CHART_STACKED_COLUMN', '누적 가로 막대형 차트', 'Stacked Column Chart', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-stacked-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-29 11:02:11.889462', '2022-10-30 19:13:31.928371', 17, 'CHART_STACKED_BAR', '누적 세로 막대형 차트', 'Stacked Bar Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}
|
||||
', 'icon/ct-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:26:41.497188', '2022-10-30 19:16:45.260378', 19, 'CHART_TREEMAP', '트리맵 차트', 'Treemap Chart', 'SQUARE', '{"series":{"color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum"},"label":true}', 'icon/ct-treemap.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:27:25.459299', '2022-10-30 19:17:47.015473', 20, 'CHART_CANDLESTICK', '캔들스틱 차트', 'Candlestick Chart', 'HORIZONTAL', '{"series":[{"color":"#FA5A5A","aggregation":"sum"},{"color":"#2870C4","aggregation":"sum"},{"color":"#E03B3B","aggregation":"sum"},{"color":"#215DA3","aggregation":"sum"}]}', 'icon/ct-candlestick.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-09-30 14:30:15.042412', '2022-10-30 19:18:41.324262', 21, 'CHART_GAUGE', '계기판 차트', 'Gauge Chart', 'SQUARE', '{"color":"#6aa7eb","aggregation":"sum"}', 'icon/ct-gauge.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-04 16:53:01.371721', '2022-10-30 19:16:45.228475', 22, 'CHART_SUNBURST', '선버스트 차트', 'Sunburst Chart', 'SQUARE', '{"series":{"color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum"},"label":true}', 'icon/ct-sunburst.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-05 14:45:50.362534', '2022-10-30 19:20:00.667223', 23, 'CHART_HEATMAP', '히트맵 차트', 'Heatmap Chart', 'SQUARE', '{"color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"],"aggregation":"sum"}', 'icon/ct-heatmap.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-05 15:06:18.415655', '2022-10-30 19:21:52.339615', 24, 'CHART_FUNNEL', '깔때기형 차트', 'Funnel Chart', 'VERTICAL', '{"series":{"color":[],"aggregation":"sum"}}', 'icon/ct-funnel.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-07 18:02:26.568254', '2022-10-30 19:22:59.950267', 25, 'CHART_3D_BAR', '3D 막대형 차트', '3D Bar Chart', 'SQUARE', '{"series":[{"aggregation":"sum"}],"color":["#2870c4","#4ecef6","#ffd43b","#fa5a5a"]}', 'icon/ct-3d-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-12 16:45:23.767491', '2022-10-30 19:26:45.644590', 26, 'CHART_3D_LINE', '3D 선형 차트', '3D Line Chart', 'SQUARE', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}]}', 'icon/ct-3d-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-13 11:23:31.980147', '2022-10-30 19:26:45.584983', 27, 'CHART_3D_SCATTER', '3D 분산형 차트', '3D Scatter Chart', 'SQUARE', '{"series":[{"symbolSize":"20","color":"#6aa7eb"}]}', 'icon/ct-3d-scatter.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-13 21:23:06.474435', '2022-10-30 19:26:45.618649', 28, 'CHART_3D_BUBBLE', '3D 거품형 차트', '3D Bubble Chart', 'SQUARE', '{"series":[{"color":"#6aa7eb"}]}', 'icon/ct-3d-bubble.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 14:50:41.667043', '2022-10-30 19:39:25.164231', 29, 'CHART_WATERFALL_BAR', '폭포수 세로 차트', 'Waterfall Bar Chart', 'VERTICAL', '{"series":[{"aggregation":"sum"}],"color":["#6aa7eb","#fa5a5a"],"mark":true}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 14:53:02.853952', '2022-10-30 19:39:25.132789', 30, 'CHART_WATERFALL_COLUMN', '폭포수 가로 차트', 'Waterfall Column Chart', 'HORIZONTAL', '{"series":[{"aggregation":"sum"}],"color":["#6aa7eb","#fa5a5a"],"mark":true}', '', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 15:21:20.186899', '2022-10-30 19:45:59.623694', 31, 'CHART_POLAR_BAR', '극좌표 막대형 차트', 'Polar Bar Chart', 'SQUARE', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"radius":["10%","75%"]}', 'icon/ct-polar-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-14 16:07:18.347330', '2022-10-30 19:52:31.695260', 32, 'MIXED_CHART_LINE_PIE', '선형과 원형 복합 차트', 'Mixed Line and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"mark":true}', 'icon/ct-pie-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-15 20:09:47.754250', '2022-10-30 19:53:56.154487', 33, 'CHART_POLAR_STACKED_BAR', '극좌표 누적 막대형 차트', 'Polar Stacked Bar Chart', 'SQUARE', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"radius":["10%","75%"]}', 'icon/ct-polar-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:22:43.859648', '2022-10-30 19:55:51.687249', 34, 'MIXED_CHART_AREA_PIE', '영역형과 원형 복합 차트', 'Mixed Area and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"mark":true}', 'icon/ct-pie-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:23:33.681125', '2022-10-30 19:55:51.652309', 35, 'MIXED_CHART_BAR_PIE', '세로 막대형과 원형 복합 차트', 'Mixed Bar and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"mark":true}', 'icon/ct-pie-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:24:04.783798', '2022-10-30 19:55:51.717831', 36, 'MIXED_CHART_COLUMN_PIE', '가로 막대형과 원형 복합 차트', 'Mixed Column and Pie Chart', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"mark":true}', 'icon/ct-pie-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:34:32.081057', '2022-10-30 19:55:51.494858', 37, 'MIXED_CHART_STACKED_BAR_PIE', '누적 세로 막대형과 원형 복합 차트', 'Mixed Stacked-Bar and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"label":true}', 'icon/ct-pie-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 16:35:01.816820', '2022-10-30 19:55:51.578363', 38, 'MIXED_CHART_STACKED_COLUMN_PIE', '누적 가로 막대형과 원형 복합 차트', 'Mixed Stacked-Column and Pie Chart', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"label":true}', 'icon/ct-pie-stacked-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:00:01.525246', '2022-10-30 19:55:51.522485', 39, 'MIXED_CHART_STACKED_LINE_PIE', '누적 선형과 원형 복합 차트', 'Mixed Stacked-Line and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"label":true}', 'icon/ct-pie-stacked-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:00:18.251377', '2022-10-30 20:03:07.535113', 40, 'MIXED_CHART_STACKED_AREA_PIE', '누적 영역형과 원형 복합 차트', 'Mixed Stacked-Area and Pie Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"pie":{"color":[],"center":["80%","20%"],"radius":"20%","aggregation":"sum","label":"{b}"},"label":true}', 'icon/ct-pie-stacked-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-17 17:36:30.244205', '2022-10-30 20:05:20.554012', 41, 'MIXED_CHART_DONUT_PIE', '도넛형과 원형 복합 차트', 'Mixed Donut and Pie Chart', 'SQUARE', '{"series":{"aggregation":"sum","radius":["45%","60%"],"label":"{b}"},"pie":{"radius":"30%","aggregation":"sum","label":"{b}"},"color":[]}', 'icon/ct-pie-donut.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-18 18:20:30.428782', '2022-10-30 20:07:43.958105', 42, 'MIXED_CHART_NIGHTINGALE_PIE', '나이팅게일과 원형 복합 차트', 'Mixed Nightingale and Pie Chart', 'SQUARE', '{"series":{"aggregation":"sum","radius":["45%","60%"],"label":"{b}"},"pie":{"radius":"30%","aggregation":"sum","label":"{b}"},"color":[]}', 'icon/ct-pie-nightingale.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 09:53:24.023311', '2022-10-30 20:07:43.902251', 43, 'MIXED_CHART_LINE_STACKED_BAR', '선형과 누적 세로 막대형 복합 차트', 'Mixed Line and Stacked-Bar Chart', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum","type":"line"},{"color":"#47a8ea","aggregation":"sum","type":"bar"}],"label":true}', 'icon/ct-mixed-line-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 15:26:58.627116', '2022-10-30 20:24:14.005286', 44, 'MIXED_CHART_LINE_BOARD_NUMERIC', '선형 차트와 숫자 보드', 'Line Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:27.549154', '2022-10-30 20:26:23.953415', 45, 'MIXED_CHART_AREA_BOARD_NUMERIC', '영역형 차트와 숫자 보드', 'Area Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:33.904190', '2022-10-30 20:26:24.012197', 46, 'MIXED_CHART_BAR_BOARD_NUMERIC', '세로 막대형 차트와 숫자 보드', 'Bar Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:40.386273', '2022-10-30 20:26:23.981924', 47, 'MIXED_CHART_COLUMN_BOARD_NUMERIC', '가로 막대형 차트와 숫자 보드', 'Column Chart and Score Board', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"mark":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:46.271170', '2022-10-30 20:26:24.076024', 48, 'MIXED_CHART_STACKED_LINE_BOARD_NUMERIC', '누적 선형 차트와 숫자 보드', 'Stacked Line Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-stacked-line.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:51.695465', '2022-10-30 20:26:24.048607', 49, 'MIXED_CHART_STACKED_AREA_BOARD_NUMERIC', '누적 영역형 차트와 숫자 보드', 'Stacked Area Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-stacked-area.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:37:57.135223', '2022-10-30 20:26:23.921679', 50, 'MIXED_CHART_STACKED_BAR_BOARD_NUMERIC', '누적 세로 막대형 차트와 숫자 보드', 'Stacked Bar Chart and Score Board', 'HORIZONTAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-stacked-bar.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:38:03.095468', '2022-10-30 20:26:24.103303', 51, 'MIXED_CHART_STACKED_COLUMN_BOARD_NUMERIC', '누적 가로 막대형 차트와 숫자 보드', 'Stacked Column Chart and Score Board', 'VERTICAL', '{"series":[{"color":"#6aa7eb","aggregation":"sum"}],"label":true,"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-stacked-column.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-19 20:38:49.744062', '2022-10-30 20:28:44.086414', 52, 'MIXED_CHART_DONUT_BOARD_NUMERIC', '도넛형 차트와 숫자 보드', 'Donut Chart and Score Board', 'SQUARE', '{"series":{"color":[],"aggregation":"sum","label":"{b}","radius":["40%","75%"]},"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-donut.svg', null, 'Y');
|
||||
INSERT INTO vanillameta.component (createdAt, updatedAt, id, type, title, description, category, `option`, icon, seq, useYn) VALUES ('2022-10-20 20:03:57.496413', '2022-10-30 20:31:16.919779', 53, 'MIXED_CHART_NIGHTINGALE_BOARD_NUMERIC', '나이팅게일 차트와 숫자 보드', 'Nightingale Chart and Score Board', 'SQUARE', '{"series":{"color":[],"aggregation":"sum","label":"{b}","radius":["40%","75%"]},"header":{"title":"타이틀을 입력하세요","fontSize":20,"color":"#4A4A4A"},"content":{"aggregation":"sum","fontSize":50,"color":"#4A4A4A"}}', 'icon/ct-score-nightingale.svg', null, 'Y');
|
||||
@@ -1,10 +1,11 @@
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:44:18.946447', '2022-10-18 17:44:18.946447', 1, 'mysql', 'MySQL', 1, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:44:18.946447', '2022-10-27 10:12:51.920502', 1, 'mysql2', 'MySQL', 1, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:46:14.700394', '2022-10-18 17:46:14.700394', 2, 'maria', 'MariaDB', 2, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:21.842039', '2022-10-18 17:49:21.842039', 3, 'postgres', 'PostgreSQL', 3, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:22.361833', '2022-10-18 17:49:22.361833', 4, 'oracle', 'Oracle', 4, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:21.842039', '2022-10-20 11:39:03.245261', 3, 'pg', 'PostgreSQL', 3, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:22.361833', '2022-10-20 12:58:21.685641', 4, 'oracledb', 'Oracle', 4, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:22.982368', '2022-10-18 17:49:22.982368', 5, 'db2', 'DB2', 5, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:23.378836', '2022-10-18 17:49:23.378836', 6, 'redshift', 'Amazon Redshift', 6, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:23.784827', '2022-10-18 17:49:23.784827', 7, 'bigquery', 'Google Cloud BigQuery', 7, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:23.966790', '2022-10-18 17:49:23.966790', 8, 'sqlite', 'SQLite', 8, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:23.966790', '2022-10-20 12:57:39.025176', 8, 'sqlite3', 'SQLite', 8, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:24.300902', '2022-10-18 17:49:24.300902', 9, 'mssql', 'MSSQL', 9, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:24.684788', '2022-10-18 17:49:24.684788', 10, 'snowflake', 'Snowflake', 10, 'Y');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-18 17:49:24.684788', '2022-10-20 14:59:13.758077', 10, 'snowflake', 'Snowflake', 10, 'N');
|
||||
INSERT INTO vanillameta.databaseType (createdAt, updatedAt, id, type, title, seq, useYn) VALUES ('2022-10-20 14:59:13.794764', '2022-10-20 14:59:13.794764', 11, 'aurora', 'Amazon Aurora', 11, 'Y');
|
||||
|
||||
Reference in New Issue
Block a user