Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. CREATE TABLE [File].[FileDetail]
  2. (
  3. [Id] [bigint] IDENTITY(1,1) NOT NULL,
  4. [AccountId] [bigint] NOT NULL,
  5. [TransferredDateTime] [datetime] NOT NULL,
  6. [IsEncrypted] [bit] NOT NULL,
  7. [EncyptionType] [nvarchar](50) NOT NULL,
  8. [EncryptionKey] [varbinary](2048) NULL,
  9. [EncryptionIV] [varbinary](2048) NULL,
  10. [OriginalPath] [nvarchar](400) NOT NULL,
  11. [SourceMachine] [nvarchar](4000) NOT NULL,
  12. [RelativeLocation] [nvarchar](400) NOT NULL,
  13. [FileCreationTime] [datetime] NOT NULL,
  14. [DurationMs] [int] NOT NULL,
  15. [EncryptionDurationMs] [int] NOT NULL,
  16. [CopiedSuccessfully] [bit] NOT NULL,
  17. [UserId] [bigint] NULL,
  18. [CustomerId] [bigint] NULL,
  19. [NumberCalled] [nvarchar](50) NULL,
  20. [TelephonyCallId] [uniqueidentifier] NULL,
  21. [SolutionInstanceId] [bigint] NULL,
  22. [Filename] [nvarchar](240) NULL,
  23. [NonCompliantFilename] [nvarchar](240) NULL,
  24. [StorageLocationType] [int] NOT NULL,
  25. [DeletedStatus] [int] NOT NULL,
  26. [DeletedStatusTimestamp] [datetime] NULL,
  27. [FileSize] [int] NULL
  28. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement