db.migration.V05__adicionado_fk_estabelecimento_tabela_usuario.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tcc-porta-servico Show documentation
Show all versions of tcc-porta-servico Show documentation
Projeto serviço que realiza acesso ao banco de dados para o projeto API e web
The newest version!
alter table usuario add column codigo_estabelecimento BIGINT(20);
alter table usuario add constraint FK_estabelecimento foreign key (codigo_estabelecimento) references estabelecimento(codigo);
update usuario u set codigo_estabelecimento = (select codigo from estabelecimento where codigo_responsavel = u.codigo);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy