Advertisement
anchormodeling

Evaluated JavaScript from sisula

Jun 18th, 2013
1,126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.74 KB | None | 0 0
  1. /*
  2.  *  Knots are used to store finite sets of values, normally used to describe states
  3.  *  of entities (through knotted attributes) or relationships (through knotted ties).
  4.  *
  5.  */
  6. ----------------------------------- [Knot Table] -------------------------------------
  7. -- GEN_Gender table (number 1 of 4)
  8. --------------------------------------------------------------------------------------
  9. IF NOT EXISTS (SELECT * FROM sys.objects WHERE name = GEN_Gender and type LIKE '%U%')
  10. CREATE TABLE [dbo].[GEN_Gender] (
  11.     GEN_ID bit  not null,
  12.     GEN_Gender varchar(42) not null,
  13.     Metadata_GEN int not null,
  14.     constraint pkGEN_Gender primary key (
  15.         GEN_ID asc
  16.     ),
  17.     constraint uqGEN_Gender unique (
  18.         GEN_Gender
  19.     )
  20. );
  21. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement