Skip to content

Instantly share code, notes, and snippets.

@manther
Created October 17, 2012 17:15
Book Table
CREATE TABLE [dbo].[Book] (
[Id] INT NOT NULL,
[CurrentLocation] INT NOT NULL,
[NumberPerBox] INT NOT NULL,
[ReturnPolicy] INT NOT NULL,
[Title] VARCHAR (255) NULL,
[Active] BIT NOT NULL,
[BooksInStore] INT NOT NULL,
[BoxesInWarehouse] INT NOT NULL,
[BookType] INT NOT NULL,
CONSTRAINT [PK_Book] PRIMARY KEY CLUSTERED ([Id] ASC)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment