Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.53 KB | None | 0 0
  1. -- ########################################
  2. -- #### dbo.Componenten Neue Felder    ####
  3. -- ########################################
  4.  
  5. ALTER TABLE Component
  6. ADD
  7.  
  8. -- Noch nicht vorhandene Felder bzgl. der Ball Definition Optionsgruppe
  9.  
  10. B_CO_BOOL bit NOT NULL DEFAULT 0,
  11. -- B_YO_R+ gibt es schon -> Component.CO+
  12. -- B_YO_R- gibt es schon -> Component.CO-
  13. B_CO_ATTR nvarchar(50) DEFAULT NULL,
  14.  
  15. B_XO_BOOL bit NOT NULL DEFAULT 0,
  16. "B_XO_R+" INT DEFAULT NULL,
  17. "B_XO_R-" INT DEFAULT NULL,
  18. B_XO_ATTR nvarchar(50) DEFAULT NULL,
  19.  
  20. B_YO_BOOL bit NOT NULL DEFAULT 0,
  21. "B_YO_R+" INT DEFAULT NULL,
  22. "B_YO_R-" INT DEFAULT NULL,
  23. B_YO_ATTR nvarchar(50) DEFAULT NULL,
  24.  
  25. B_RO_BOOL bit NOT NULL DEFAULT 0,
  26. "B_RO_R+" INT DEFAULT NULL,
  27. "B_RO_R-" INT DEFAULT NULL,
  28. B_RO_ATTR nvarchar(50) DEFAULT NULL,
  29.  
  30. B_PI_BOOL bit NOT NULL DEFAULT 0,
  31. -- B_PI_R+ gibt es schon -> Component.PI+
  32. -- B_PI_R- gibt es schon -> Component.PI-
  33.  
  34. B_WI_BOOL bit NOT NULL DEFAULT 0,
  35. -- B_WI_R+ gibt es schon -> Component.WI+
  36. -- B_WI_R- gibt es schon -> Component.WI-
  37. B_WI_ATTR nvarchar(50) DEFAULT NULL,
  38.  
  39. B_QU_BOOL bit NOT NULL DEFAULT 0,
  40. "B_QU_R+" INT DEFAULT NULL,
  41. "B_QU_R-" INT DEFAULT NULL,
  42.  
  43. B_CT_BOOL bit NOT NULL DEFAULT 0,
  44. "B_CT_R+" INT DEFAULT NULL,
  45. "B_CT_R-" INT DEFAULT NULL,
  46.  
  47. B_BH_BOOL bit NOT NULL DEFAULT 0,
  48. "B_BH_R+" INT DEFAULT NULL,
  49. "B_BH_R-" INT DEFAULT NULL,
  50.  
  51. -- Neues Feld fuer die Inspection Flow Optionsgruppe
  52.  
  53. Ins_Body_Measurement bit NOT NULL DEFAULT 0,
  54.  
  55. -- Neues Feld fuer die Ball3D Optionsgruppe
  56.  
  57.  
  58. Ball3_Ext_Warp bit NOT NULL DEFAULT 0
  59.  
  60. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement