Created
October 30, 2015 19:32
-
-
Save xavierzwirtz/871060ef700d137e192a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 POSDrawers ( | |
[ID] uniqueidentifier NOT NULL PRIMARY KEY, | |
[Description] [varchar] (100) , | |
[Status] [varchar] (50) , | |
[Created] [int] , | |
[LastActivity] [datetime] , | |
[InitialBalance] [int] , | |
[Stage] [int]) | |
CREATE TABLE [dbo].[POSUserDrawers] ( | |
[UserID] uniqueidentifier , | |
[DrawerID] uniqueidentifier) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment