USE [Elyse_DB] GO /****** Object: Table [people].[people_lists] Script Date: Mon 07-09-2026 7:26:40 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [people].[people_lists]( [people_list_id] [bigint] NOT NULL, [sid_id] [bigint] NOT NULL, [list_position] [int] NULL, [created] [datetime2](7) NOT NULL, [granted_by] [nvarchar](128) NOT NULL, [valid_from] [datetime2](7) NULL, [valid_until] [datetime2](7) NULL, [app_reference] [nvarchar](1000) NULL, [notes] [nvarchar](1000) NULL, CONSTRAINT [PK_people_lists_1] PRIMARY KEY CLUSTERED ( [people_list_id] ASC, [sid_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO ALTER TABLE [people].[people_lists] ADD CONSTRAINT [DF_people_lists_created] DEFAULT (sysdatetime()) FOR [created] GO ALTER TABLE [people].[people_lists] ADD CONSTRAINT [DF_people_lists_granted_by] DEFAULT (original_login()) FOR [granted_by] GO ALTER TABLE [people].[people_lists] WITH CHECK ADD CONSTRAINT [FK_people_list_name_has_person] FOREIGN KEY([people_list_id]) REFERENCES [people].[people_list_names] ([people_list_id]) GO ALTER TABLE [people].[people_lists] CHECK CONSTRAINT [FK_people_list_name_has_person] GO ALTER TABLE [people].[people_lists] WITH CHECK ADD CONSTRAINT [FK_people_lists_sid_id] FOREIGN KEY([sid_id]) REFERENCES [user_restr].[sid_list] ([sid_id]) GO ALTER TABLE [people].[people_lists] CHECK CONSTRAINT [FK_people_lists_sid_id] GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Position is an integer which allows a list of options in a table to be set in any order. The value is unconstrained and must be set at the application layer.' , @level0type=N'SCHEMA',@level0name=N'people', @level1type=N'TABLE',@level1name=N'people_lists', @level2type=N'COLUMN',@level2name=N'list_position' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Creates lists of people. COPYRIGHT NOTICE This database schema and stored procedures are protected by copyright. Copyright. Silkwood Software Pty. Ltd. 2023 ' , @level0type=N'SCHEMA',@level0name=N'people', @level1type=N'TABLE',@level1name=N'people_lists' GO