Skip to content

Instantly share code, notes, and snippets.

@DannyFeliz
Last active July 10, 2016 00:44
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 DannyFeliz/6078c21e369632b47fd0778273a12fdb to your computer and use it in GitHub Desktop.
Save DannyFeliz/6078c21e369632b47fd0778273a12fdb to your computer and use it in GitHub Desktop.
User tables
CREATE TABLE [dbo].[Users]
(
[id] INT NOT NULL PRIMARY KEY IDENTITY,
[name] NVARCHAR(50) NOT NULL,
[last_name] NVARCHAR(75) NOT NULL,
[username] NVARCHAR(50) NOT NULL,
[password] NVARCHAR(100) NOT NULL,
[role] INT NOT NULL
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment