Skip to content

Instantly share code, notes, and snippets.

@shaneis
Last active September 12, 2017 08:14
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 shaneis/0910c5f7e1da8edb3e03b8f1d64fca4a to your computer and use it in GitHub Desktop.
Save shaneis/0910c5f7e1da8edb3e03b8f1d64fca4a to your computer and use it in GitHub Desktop.
Disc Characters table create statement
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