Last active
September 12, 2017 08:14
-
-
Save shaneis/0910c5f7e1da8edb3e03b8f1d64fca4a to your computer and use it in GitHub Desktop.
Disc Characters table create statement
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.DiscCharacters ( | |
DiscId int IDENTITY(1, 1) NOT NULL, | |
Person varchar(50) NULL, | |
Job varchar(75) NULL, | |
Notes varchar(300) NULL | |
); | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment