Sunteți pe pagina 1din 1

create table hd_soporte

(
s_id int Identity(1, 1)
,s_asunto varchar(50)
,s_descripcion varchar(50)
,s_tipo int
,s_prioridad int
,s_afectado varchar (50)
,s_origen varchar(50)
,s_fecha_hora_a dateTime
,s_fecha_hora_c dateTime
,s_estado int
)
create table hd_soporte_agente
(
sa_id int Identity(1, 1)
,s_id int
,a_id int
,sa_estado int
)
create table hd_soporte_historia
(
sh_id int Identity(1, 1)
,h_id int
,s_id int
,sh_estado int
)
create table hd_historia
(
h_id int Identity(1, 1)
,h_comentario varchar(50)
,h_fecha_hora dateTime

create table hd_agente


(
a_id int
,a_apellido varchar(50)
,a_nombre varchar(50)
)

S-ar putea să vă placă și