Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
-- Production tables
if not exists (select 1 from sys.tables where name='nflow_workflow')
create table nflow_workflow (
id int not null identity(1,1) primary key,
status varchar(32) not null,
type varchar(64) not null,
priority smallint not null default 0,
parent_workflow_id int default null,
parent_action_id int default null,
business_key varchar(64),
external_id varchar(64) not null,
state varchar(64) not null,
state_text varchar(128),
next_activation datetimeoffset(3),
external_next_activation datetimeoffset(3),
executor_id int,
retries int not null default 0,
created datetimeoffset(3) not null default SYSDATETIMEOFFSET(),
modified datetimeoffset(3) not null default SYSDATETIMEOFFSET(),
started datetimeoffset(3),
executor_group varchar(64) not null,
workflow_signal int,
constraint nflow_workflow_uniq unique (type, external_id, executor_group)
);
if not exists (select 1 from sys.triggers where name='nflow_workflow_modified_trigger')
exec dbo.sp_executesql @statement = N'
create trigger nflow_workflow_modified_trigger on nflow_workflow after update as
begin
update nflow_workflow set modified = SYSDATETIMEOFFSET()
from nflow_workflow wf inner join inserted i on wf.id = i.id
end';
if not exists (select 1 from sys.indexes where name='nflow_workflow_polling')
create index nflow_workflow_polling on nflow_workflow(next_activation, status, executor_id, executor_group) where next_activation is not null;
if not exists (select 1 from sys.indexes where name='idx_workflow_parent')
create index idx_workflow_parent on nflow_workflow(parent_workflow_id);
if not exists (select 1 from sys.tables where name='nflow_workflow_action')
create table nflow_workflow_action (
id int not null identity(1,1) primary key,
workflow_id int not null,
executor_id int not null default -1,
type varchar(64) not null,
state varchar(64) not null,
state_text varchar(128),
retry_no int not null,
execution_start datetimeoffset(3) not null,
execution_end datetimeoffset(3) not null,
constraint fk_action_workflow_id foreign key (workflow_id) references nflow_workflow(id)
);
if not exists (select 1 from sys.indexes where name='nflow_workflow_action_workflow')
create index nflow_workflow_action_workflow on nflow_workflow_action(workflow_id);
if not exists (select 1 from sys.tables where name='nflow_workflow_state')
create table nflow_workflow_state (
workflow_id int not null,
action_id int not null,
state_key varchar(64) not null,
state_value text not null,
constraint pk_workflow_state primary key (workflow_id, action_id, state_key),
constraint fk_state_workflow_id foreign key (workflow_id) references nflow_workflow(id)
);
if not exists (select 1 from sys.indexes where name='nflow_workflow_state_workflow')
create index nflow_workflow_state_workflow on nflow_workflow_state(workflow_id);
if not exists (select 1 from sys.tables where name='nflow_executor')
create table nflow_executor (
id int not null identity(1,1) primary key,
host varchar(253) not null,
pid int not null,
executor_group varchar(64),
started datetimeoffset(3) not null default SYSDATETIMEOFFSET(),
active datetimeoffset(3) not null,
expires datetimeoffset(3) not null,
stopped datetimeoffset(3)
);
if not exists (select 1 from sys.tables where name='nflow_workflow_definition')
create table nflow_workflow_definition (
type varchar(64) not null,
definition_sha1 varchar(40) not null,
definition text not null,
created datetimeoffset(3) not null default SYSDATETIMEOFFSET(),
modified datetimeoffset(3) not null default SYSDATETIMEOFFSET(),
modified_by int not null,
executor_group varchar(64) not null,
constraint pk_workflow_definition primary key (type, executor_group)
);
if not exists (select 1 from sys.triggers where name='nflow_workflow_definition_modified_trigger')
exec dbo.sp_executesql @statement = N'
create trigger nflow_workflow_definition_modified_trigger on nflow_workflow_definition after update as
begin
update nflow_workflow_definition set modified = SYSDATETIMEOFFSET()
from nflow_workflow_definition df inner join inserted i on df.type = i.type and df.executor_group = i.executor_group
end';
-- Archive tables
-- - no default values
-- - no triggers
-- - no auto increments
-- - same indexes and constraints as production tables
-- - remove recursive foreign keys
if not exists (select 1 from sys.tables where name='nflow_archive_workflow')
create table nflow_archive_workflow (
id int not null primary key,
status varchar(32) not null,
type varchar(64) not null,
priority smallint null,
parent_workflow_id int,
parent_action_id int,
business_key varchar(64),
external_id varchar(64) not null,
state varchar(64) not null,
state_text varchar(128),
next_activation datetimeoffset(3),
external_next_activation datetimeoffset(3),
executor_id int,
retries int not null default 0,
created datetimeoffset(3) not null,
modified datetimeoffset(3) not null,
started datetimeoffset(3),
executor_group varchar(64) not null,
workflow_signal int,
constraint nflow_archive_workflow_uniq unique (type, external_id, executor_group)
);
if not exists (select 1 from sys.indexes where name='nflow_archive_workflow_parent')
create index nflow_archive_workflow_parent on nflow_archive_workflow(parent_workflow_id, parent_action_id);
if not exists (select 1 from sys.indexes where name='idx_workflow_archive_parent')
create index idx_workflow_archive_parent on nflow_archive_workflow (parent_workflow_id);
if not exists (select 1 from sys.tables where name='nflow_archive_workflow_action')
create table nflow_archive_workflow_action (
id int not null primary key,
workflow_id int not null,
executor_id int not null,
type varchar(64) not null,
state varchar(64) not null,
state_text varchar(128),
retry_no int not null,
execution_start datetimeoffset(3) not null,
execution_end datetimeoffset(3) not null,
constraint fk_arch_action_wf_id foreign key (workflow_id) references nflow_archive_workflow(id)
);
if not exists (select 1 from sys.indexes where name='nflow_archive_workflow_action_workflow')
create index nflow_archive_workflow_action_workflow on nflow_archive_workflow_action(workflow_id);
if not exists (select 1 from sys.tables where name='nflow_archive_workflow_state')
create table nflow_archive_workflow_state (
workflow_id int not null,
action_id int not null,
state_key varchar(64) not null,
state_value text not null,
constraint pk_arch_workflow_state primary key (workflow_id, action_id, state_key),
constraint fk_arch_state_wf_id foreign key (workflow_id) references nflow_archive_workflow(id)
);
if not exists (select 1 from sys.indexes where name='nflow_archive_workflow_state_workflow')
create index nflow_archive_workflow_state_workflow on nflow_archive_workflow_state(workflow_id);