All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.V05__adicionado_fk_estabelecimento_tabela_usuario.sql Maven / Gradle / Ivy

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