Skip to content

Commit 13ff5df

Browse files
Release v0.0.125
1 parent 8d76710 commit 13ff5df

8 files changed

Lines changed: 49 additions & 5 deletions

File tree

dist/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48972,7 +48972,11 @@ var SchemaDesigner = class {
4897248972
isPrimaryKey: true,
4897348973
isIdentity: true,
4897448974
isNullable: false,
48975-
isUnique: false
48975+
isUnique: false,
48976+
maxLength: 0,
48977+
precision: 0,
48978+
scale: 0,
48979+
collation: ""
4897648980
}
4897748981
],
4897848982
foreignKeys: []

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/ts/schemaDesigner/schemaDesigner.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,10 @@ class SchemaDesigner {
850850
isIdentity: true,
851851
isNullable: false,
852852
isUnique: false,
853+
maxLength: 0,
854+
precision: 0,
855+
scale: 0,
856+
collation: ''
853857
}
854858
],
855859
foreignKeys: []

dist/src/ts/schemaDesigner/schemaDesignerInterfaces.d.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,18 @@ export interface Column {
4545
* Data type of the column
4646
*/
4747
dataType: string;
48+
/**
49+
* Max length of the column
50+
*/
51+
maxLength: number;
52+
/**
53+
* Precision of the column
54+
*/
55+
precision: number;
56+
/**
57+
* Scale of the column
58+
*/
59+
scale: number;
4860
/**
4961
* Is the column primary key
5062
*/
@@ -61,6 +73,10 @@ export interface Column {
6173
* Unique constraint of the column
6274
*/
6375
isUnique: boolean;
76+
/**
77+
* Collation of the column
78+
*/
79+
collation: string;
6480
}
6581
export interface ForeignKey {
6682
/**

dist/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.124",
4+
"version": "0.0.125",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/ts/schemaDesigner/schemaDesigner.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,10 @@ export class SchemaDesigner {
977977
isIdentity: true,
978978
isNullable: false,
979979
isUnique: false,
980+
maxLength: 0,
981+
precision: 0,
982+
scale: 0,
983+
collation: ''
980984
}
981985
],
982986
foreignKeys: []

src/ts/schemaDesigner/schemaDesignerInterfaces.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@ export interface Column {
4848
* Data type of the column
4949
*/
5050
dataType: string;
51+
/**
52+
* Max length of the column
53+
*/
54+
maxLength: number;
55+
/**
56+
* Precision of the column
57+
*/
58+
precision: number;
59+
/**
60+
* Scale of the column
61+
*/
62+
scale: number;
5163
/**
5264
* Is the column primary key
5365
*/
@@ -64,6 +76,10 @@ export interface Column {
6476
* Unique constraint of the column
6577
*/
6678
isUnique: boolean;
79+
/**
80+
* Collation of the column
81+
*/
82+
collation: string;
6783
}
6884

6985
export interface ForeignKey {

0 commit comments

Comments
 (0)