Table Properties
| Name | Value |
|---|---|
| Owner | dbo |
| Created | 2004-05-31 |
| Located On | PRIMARY |
| Rows | 0 |
| Data Size KB | 0 |
| Index Size KB | 0 |
Columns
| Name | Description | Data Type | Length | NULL | Default | RowGUIDCOL | Computed | |
|---|---|---|---|---|---|---|---|---|
| ModeratedOn | datetime | 8 | ||||||
| PostId | int | 4 | ||||||
| ModeratedBy | nvarchar | 50 | ||||||
| ModerationAction | int | 4 | ||||||
| Notes | nvarchar | 1024 |
Total: 5 column(s)
Indentity Column
No identity column exists
Check Constraints
No check constraints exists
Indexes
| Index | Primary | Unique | Clustered |
|---|
Permissions
No direct permissions defined (N.B. Permissions may be inherited from roles
SQL
CREATE TABLE [ModerationAudit] ( [ModeratedOn] [datetime] NOT NULL , [PostId] [int] NOT NULL , [ModeratedBy] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [ModerationAction] [int] NOT NULL , [Notes] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] GO