Merge pull request #10 from cromerc/fix_hospedar

arrelgar atributos faltantes
This commit is contained in:
HieloxZack 2020-06-20 16:18:31 -04:00 committed by GitHub
commit 832c1f0064
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ CREATE TABLE hospedar(
id_delegacion NUMBER,
fecha_inicio DATE,
fecha_fin DATE,
precio NUMBER,
precio_delegacion NUMBER,
precio_atleta NUMBER,
CONSTRAINT hospedar_hotel_fk FOREIGN KEY (id_hotel) REFERENCES hotel(id_hotel),
CONSTRAINT hospedar_delegacion_fk FOREIGN KEY (id_delegacion) REFERENCES delegacion(id_delegacion)
);