Skip to content

Instantly share code, notes, and snippets.

@adeelnasir
Created June 11, 2018 23:58
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 adeelnasir/7f857906096d75539089f444cffba31e to your computer and use it in GitHub Desktop.
Save adeelnasir/7f857906096d75539089f444cffba31e to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[Registration] (
[RegistrationId] UNIQUEIDENTIFIER CONSTRAINT [DF_Registration_RegistrationId] DEFAULT (newid()) NOT NULL,
[StartIp] NVARCHAR (50) NOT NULL,
[EndIp] NVARCHAR (50) NOT NULL,
[RedirectName] NVARCHAR (255) NOT NULL,
CONSTRAINT [PK_Registration] PRIMARY KEY CLUSTERED ([RegistrationId] ASC)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment