CfgAddon Table

<< Click to Display Table of Contents >>

Navigation:  iVend Database Database > Tables >

CfgAddon Table

Navigation: iVend Database Database > Tables >

hm_btn_navigate_prevhm_btn_navigate_tophm_btn_navigate_next

iVend 6.6 Database Help

CfgAddon Table

Collapse All Expand All

iVend Database Database : CfgAddon Table

Description

Stores the AddOn Data for the replication

Properties

Creation Date

4/13/2015 12:00 PM

File Group

PRIMARY

Text File Group

PRIMARY

System Object

dbimages_boolean-false

Published for Replication

dbimages_boolean-false

Rows

0

Data Space Used

0.00 KB

Index Space Used

0.00 KB

Columns

 

Column Name

Description

Datatype

Length

Allow Nulls

Default

Formula

Primary Key

AddOnKey

Primary key for the AddOn

VarWChar

50

 

 

 

 

Name

Stores the Name of the Add ON

VarWChar

100

 

 

 

 

Description

Stores the Description of the Add On

VarWChar

100

dbimages_tick

 

 

 

AddOnData

Stores the Binary Data for the AddOn Zip file

LongVarBinary

16

 

 

 

 

IsUpdated

Value is True if the Add On is Updated

Boolean

1

 

((0))

 

 

IsConnected

Value is True if the installed Add On is connected

Boolean

1

 

((1))

 

 

Created

Date of creation of this record

DBTimeStamp

4

 

 

 

 

CreatedBy

Reference of user who has created this record. See also Security User

VarWChar

50

 

 

 

 

Modified

Date of last modification of this record

DBTimeStamp

4

 

 

 

 

ModifiedBy

Reference of user who has created this record. See also Security User

VarWChar

50

 

 

 

 

IsDeleted

Value is True if the record has been deleted from the system. Record is always Soft Deleted

Boolean

1

 

 

 

 

AddOnExecutionOrder

Set the addOn execution order

Integer

4

 

((0))

 

 

AddOnVersion

running addOn version number

VarWChar

20

dbimages_tick

 

 

 

IsMandatory

Value is True if the AddOn is mandatory

Boolean

1

 

((0))

 

Indexes

Index

Description

Primary

Unique

PK_CfgAddon

 

dbimages_tick

dbimages_tick

SQL

SET ANSI_NULLS ON

SET QUOTED_IDENTIFIER ON

CREATE TABLE [dbo].[CfgAddon](

[AddOnKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[Name] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[Description] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[AddOnData] [varbinary](max) NOT NULL,

[IsUpdated] [bit] NOT NULL,

[IsConnected] [bit] NOT NULL,

[Created] [datetime] NOT NULL,

[CreatedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[Modified] [datetime] NOT NULL,

[ModifiedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,

[IsDeleted] [bit] NOT NULL,

[AddOnExecutionOrder] [int] NOT NULL,

[AddOnVersion] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

[IsMandatory] [bit] NOT NULL,

CONSTRAINT [PK_CfgAddon] PRIMARY KEY CLUSTERED

(

[AddOnKey] ASC

)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

ALTER TABLE [dbo].[CfgAddon] ADD CONSTRAINT [DF_CfgAddon_IsUpdated] DEFAULT ((0)) FOR [IsUpdated]

ALTER TABLE [dbo].[CfgAddon] ADD CONSTRAINT [DF_CfgAddon_IsConnected] DEFAULT ((1)) FOR [IsConnected]

ALTER TABLE [dbo].[CfgAddon] ADD CONSTRAINT [DF_CfgAddon_AddOnExecutionOrder] DEFAULT ((0)) FOR [AddOnExecutionOrder]

ALTER TABLE [dbo].[CfgAddon] ADD CONSTRAINT [DF__CfgAddon__IsMand__553674BA] DEFAULT ((0)) FOR [IsMandatory]

See Also

Related Objects

iVend Database Database

 

 


© 2019 All Rights Reserved.

Send comments on this topic.