您好,请将sqlserver_db_struct.sql修改为为下图所示:
代码如下:- CREATE TABLE [dbo].[jforum_moderation_log] (
- [log_id] [bigint] IDENTITY(1,1) NOT NULL,
- [user_id] [bigint] NOT NULL,
- [log_description] ntext NOT NULL,
- [log_original_message] ntext,
- [log_date] DATETIME NOT NULL,
- [log_type] [tinyint] DEFAULT ((0)),
- [post_id] [bigint],
- [topic_id] [bigint],
- [post_user_Id] [bigint]
- PRIMARY KEY CLUSTERED
- (
- [log_id] ASC
- ) WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
- ) ON [PRIMARY]
- END
复制代码 |