序号 | 列名 | 数据类型 | 长度 | 小数位 | 标识 | 主键 | 外键 | 允许空 | 默认值 | 说明 |
1 | ID | int | 4 | 0 | 是 | 是 | 否 | |||
2 | Name | nvarchar | 50 | 0 | 否 | 日程名称 | ||||
3 | Place | nvarchar | 200 | 0 | 是 | 日程地址 | ||||
4 | Describe | nvarchar | 200 | 0 | 是 | 日程描述 | ||||
5 | TaskType | int | 4 | 0 | 是 | 0:个人日程,1:公开日程 | ||||
6 | StartDate | datetime | 8 | 3 | 否 | 开始时间 | ||||
7 | EndDate | datetime | 8 | 3 | 否 | 结束时间 | ||||
8 | AllDay | int | 4 | 0 | 是 | 0 | 全天事件 | |||
9 | Repeat | int | 4 | 0 | 是 | 0 | 重复 | |||
10 | LeaderIDS | ntext | 16 | 0 | 是 | 负责人 | ||||
11 | ParterIDS | ntext | 16 | 0 | 是 | 参与人 | ||||
12 | UserID | int | 4 | 0 | 是 | 日程所属用户ID |
能力日程表
GO
CREATE TABLE [dbo].[ZL_Plat_Schedule] (
[ID] [int] IDENTITY (1, 1) NOT NULL,
[Name] [nvarchar] (50) NOT NULL,
[Place] [nvarchar] (200) NULL,
[Describe] [nvarchar] (200) NULL,
[TaskType] [int] NULL,
[StartDate] [datetime] NOT NULL,
[EndDate] [datetime] NOT NULL,
[AllDay] [int] NULL DEFAULT (0),
[Repeat] [int] NULL DEFAULT (0),
[LeaderIDS] [ntext] NULL,
[ParterIDS] [ntext] NULL,
[UserID] [int] NULL)
ALTER TABLE [ZL_Plat_Schedule] WITH NOCHECK ADD CONSTRAINT [PK_ZL_Plat_Schedule] PRIMARY KEY NONCLUSTERED ( [ID] )
detele from ZL_Plat_Schedule
drop table ZL_Plat_Schedule
TRUNCATE table ZL_Plat_Schedule