--优惠券表
|
|
create table tb_couponuser (
|
|
id int identity, --自增阿弟
|
|
paixu int null default 0, --排序
|
|
|
|
|
|
couponid int null default 0, --优惠券阿弟
|
|
|
|
name nvarchar(255) null default '', --领取优惠券用户名
|
|
|
|
couponstatus int null default 0, --优惠券使用状态(0未使用/1已使用)
|
|
|
|
add_time datetime null default getdate(), --添加时间
|
|
constraint PK_TB_COUPONUSER primary key (id)
|
|
)
|
|
go
|
|
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'自增阿弟',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'id'
|
|
go
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'排序',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'paixu'
|
|
go
|
|
|
|
|
|
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'优惠券阿弟',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'couponid'
|
|
go
|
|
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'领取优惠券用户名',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'name'
|
|
go
|
|
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'优惠券使用状态(0未使用/1已使用)',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'couponstatus'
|
|
go
|
|
|
|
|
|
execute sp_addextendedproperty 'MS_Description',
|
|
'添加时间',
|
|
'user', 'dbo', 'table', 'tb_couponuser', 'column', 'add_time'
|
|
go
|
|
|
|
|
|
|