Skip to content

Commit 4413899

Browse files
committedMar 13, 2025·
bump version to 0.0.132; add identitySeed and identityIncrement properties to Column interface in schema designer
1 parent 7c4aed6 commit 4413899

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎package.json

+1-1
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.131",
4+
"version": "0.0.132",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

‎src/ts/schemaDesigner/schemaDesignerInterfaces.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ export interface Column {
6868
* Is the column identity
6969
*/
7070
isIdentity: boolean;
71+
/**
72+
* Seed of the column
73+
*/
74+
identitySeed: number;
75+
/**
76+
* Increment of the column
77+
*/
78+
identityIncrement: number;
7179
/**
7280
* Is the column nullable
7381
*/
@@ -121,7 +129,7 @@ export enum OnAction {
121129
CASCADE = "0",
122130
NO_ACTION = "1",
123131
SET_NULL = "2",
124-
SET_DEFAULT = "3",
132+
SET_DEFAULT = "3"
125133
}
126134

127135
export interface SchemaDesignerConfig {

0 commit comments

Comments
 (0)
Please sign in to comment.