eeg_nest/sql/registroGIE.sql
2023-05-07 12:44:02 -05:00

15 lines
384 B
SQL

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);