Skip to content

master #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions modules/core/db/init/mssql/10.create-db.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- begin DDCDV_ENTITY_ATTRIBUTE_DV
create table DDCDV_ENTITY_ATTRIBUTE_DV (
ID uniqueidentifier,
VERSION integer not null,
CREATE_TS datetime2,
CREATED_BY varchar(50),
UPDATE_TS datetime2,
UPDATED_BY varchar(50),
DELETE_TS datetime2,
DELETED_BY varchar(50),
ENTITY varchar(255),
ENTITY_ATTRIBUTE varchar(255),
--
VALUE_ varchar(max),
TYPE_ varchar(50) not null,
--
primary key nonclustered (ID)
)^
-- end DDCDV_ENTITY_ATTRIBUTE_DV
3 changes: 3 additions & 0 deletions modules/core/db/init/mssql/20.create-db.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- begin DDCDV_ENTITY_ATTRIBUTE_DV
create index IDX_DDCDV_ENTITY_ATTRIBUTE_DEFAULT_VALUE_ENTITY on DDCDV_ENTITY_ATTRIBUTE_DV (ENTITY) ^
-- end DDCDV_ENTITY_ATTRIBUTE_DV
1 change: 1 addition & 0 deletions modules/core/db/init/mssql/30.create-db.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@