Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

CREATE TABLE [dbo].[GenericCounter](

	[ID] [bigint] IDENTITY(1000,1) NOT NULL,

	[Allocation Date] [datetime] NULL

) ON [PRIMARY]

GO

ALTER TABLE [dbo].[GenericCounter] ADD  CONSTRAINT [DF_GenericCounter_Allocation Date]  DEFAULT (getdate()) FOR [Allocation Date]

GO


  • No labels