Skip to content

Instantly share code, notes, and snippets.

@xavierzwirtz
Created October 30, 2015 19:32
Show Gist options
  • Save xavierzwirtz/871060ef700d137e192a to your computer and use it in GitHub Desktop.
Save xavierzwirtz/871060ef700d137e192a to your computer and use it in GitHub Desktop.
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