Advertisement
Guest User

Auth Op Paste

a guest
Jan 29th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. INSERT INTO [dbo].[AuthOperation]
  2. ([Description]
  3. ,[UserCreated]
  4. ,[DateCreated]
  5. ,[UserUpdated]
  6. ,[DateUpdated]
  7. ,[DescriptionText]
  8. ,[UserDeleted]
  9. ,[DateDeleted]
  10. ,[IsDeleted])
  11. VALUES
  12. ('CanEdit_Cost'
  13. ,'btdiehr'
  14. ,getdate()
  15. ,'btdiehr'
  16. ,getdate()
  17. ,'The ability to edit the cost on selected carriers'
  18. ,null
  19. ,null
  20. ,0)
  21. GO
  22.  
  23. /////////////////////////////////
  24.  
  25. INSERT INTO [dbo].[AuthOperation]
  26. ([Description]
  27. ,[UserCreated]
  28. ,[DateCreated]
  29. ,[UserUpdated]
  30. ,[DateUpdated]
  31. ,[DescriptionText]
  32. ,[UserDeleted]
  33. ,[DateDeleted]
  34. ,[IsDeleted])
  35. VALUES
  36. ('CanEdit_Price'
  37. ,'btdiehr'
  38. ,getdate()
  39. ,'btdiehr'
  40. ,getdate()
  41. ,'The ability to edit the price on selected carriers'
  42. ,null
  43. ,null
  44. ,0)
  45. GO
  46.  
  47. /////////////////////////////////
  48.  
  49. INSERT INTO [dbo].[AuthOperation]
  50. ([Description]
  51. ,[UserCreated]
  52. ,[DateCreated]
  53. ,[UserUpdated]
  54. ,[DateUpdated]
  55. ,[DescriptionText]
  56. ,[UserDeleted]
  57. ,[DateDeleted]
  58. ,[IsDeleted])
  59. VALUES
  60. ('CanEdit_Charge'
  61. ,'btdiehr'
  62. ,getdate()
  63. ,'btdiehr'
  64. ,getdate()
  65. ,'The ability to edit the charge on selected carriers'
  66. ,null
  67. ,null
  68. ,0)
  69. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement