Structure Overhaul
This commit is contained in:
8
Code/MetadataDB/dbo/Tables/BucketLog.sql
Normal file
8
Code/MetadataDB/dbo/Tables/BucketLog.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE [dbo].[BucketLog] (
|
||||
[LogId] INT IDENTITY (1, 1) NOT NULL,
|
||||
[LogStartDate] DATETIME NOT NULL,
|
||||
[LogEndDate] DATETIME NULL,
|
||||
[LogDetail] VARCHAR (50) NULL,
|
||||
CONSTRAINT [PK_BucketLog] PRIMARY KEY CLUSTERED ([LogId] ASC)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user