Table: ClientConfig
This table holds all used client config data.
ColumnName | DataType | Key | Not Null | Default Value | Comment |
---|---|---|---|---|---|
ClientConfigID | UNIQUEIDENTIFIER | PK | NN | ||
ClientData | VARBINARY(max) | ||||
Created | DATETIME | NN | Timestamp of config creation |
IndexName | IndexType | Columns |
---|---|---|
PK_ClientConfig | PRIMARY | ClientConfigID |
how to create
CREATE TABLE ClientConfig(
ClientConfigID UNIQUEIDENTIFIER NOT NULL default NewSequentialID(),
ClientData VARBINARY(max),
Created DATETIME NOT NULL,
CONSTRAINT PK_ClientConfig
PRIMARY KEY (ClientConfigID))