
[dbo].[sa_script_execution_log]
CREATE TABLE [dbo].[sa_script_execution_log]
(
[id] [int] NOT NULL,
[last_mod_by] [binary] (16) NULL,
[last_mod_dt] [int] NULL,
[scriptID] [int] NOT NULL,
[selfServeSessionID] [int] NOT NULL,
[sessionID] [int] NOT NULL,
[executedEpoch] [int] NOT NULL,
[surveyShown] [int] NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[sa_script_execution_log] ADD CONSTRAINT [PK__sa_script_execut__668030F6] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[sa_script_execution_log] TO [service_desk_admin_group]
GRANT INSERT ON [dbo].[sa_script_execution_log] TO [service_desk_admin_group]
GRANT DELETE ON [dbo].[sa_script_execution_log] TO [service_desk_admin_group]
GRANT UPDATE ON [dbo].[sa_script_execution_log] TO [service_desk_admin_group]
GRANT SELECT ON [dbo].[sa_script_execution_log] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'sa_script_execution_log', NULL, NULL
GO