Created
October 17, 2012 17:15
Book Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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