eeg_nest/sql/registroGIE.sql

15 lines
384 B
MySQL
Raw Normal View History

2023-05-07 17:44:02 +00:00
use educa7ls_plataforma;
alter table registroGIE
add personaId int;
alter table registroGIE
add cursoGIEId int;
alter table registroGIE
add constraint registroGIE___fk_personaId
foreign key (personaId) references personaGIE (id);
alter table registroGIE
add constraint registroGIE___fk_cursoGIEId
foreign key (cursoGIEId) references cursosGIE (id);