Skip to content

Instantly share code, notes, and snippets.

@cbcwebdev
Created April 23, 2012 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbcwebdev/2474648 to your computer and use it in GitHub Desktop.
Save cbcwebdev/2474648 to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[Accounts_Users](
[Id] [uniqueidentifier] NOT NULL,
[AccountId] [uniqueidentifier] NOT NULL,
[UserId] [uniqueidentifier] NOT NULL,
CONSTRAINT [PK_Accounts_Users] PRIMARY KEY CLUSTERED ([Id] ASC)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment