Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. -----------__ENALQUILER__--------------------
  2.  
  3. ALTER TABLE tbl_viviendas ADD (
  4. fk_id_tbl_uso_edificio INT NULL,
  5. fk_id_tbl_climatizacion INT NULL,
  6. fks_id_tbl_voz_datos INT NULL,
  7. fks_id_tbl_instalacion_electrica INT NULL,
  8. fk_id_tbl_estructura INT NULL,
  9. fk_id_tbl_cerramiento INT NULL,
  10. fk_id_tbl_cubierta INT NULL,
  11. fk_id_tbl_carpinteria INT NULL,
  12. fk_id_tbl_suelo INT NULL,
  13. fk_id_tbl_caracteristicas_zona INT NULL,
  14. fks_id_tbl_suministros INT NULL,
  15. alarma INT NULL);
  16. ALTER TABLE tbl_viviendas
  17. ADD (`foto_plano` int(11) unsigned NOT NULL DEFAULT '0',
  18. `num_escaparates` int(10) unsigned DEFAULT NULL,
  19. `luz_natural` tinyint(1) unsigned NOT NULL DEFAULT '0',
  20. `parking_incluido` tinyint(1) unsigned NOT NULL DEFAULT '0',
  21. `num_plazas_parking` int(11) unsigned NOT NULL DEFAULT '0',
  22. `suelo_tecnico` tinyint(1) unsigned NOT NULL DEFAULT '0',
  23. `cable_optico` tinyint(1) unsigned NOT NULL DEFAULT '0',
  24. `antena_parabolica` tinyint(1) unsigned NOT NULL DEFAULT '0',
  25. `antena_tradicional` tinyint(1) unsigned NOT NULL DEFAULT '0',
  26. `hilo_musical` tinyint(1) unsigned NOT NULL DEFAULT '0',
  27. `circuito_television` tinyint(1) unsigned NOT NULL DEFAULT '0',
  28. `grupo_electrogeno` tinyint(1) unsigned NOT NULL DEFAULT '0',
  29. `interfonia` tinyint(1) unsigned NOT NULL DEFAULT '0',
  30. `sala_reuniones` tinyint(1) unsigned NOT NULL DEFAULT '0',
  31. `sala_proyecciones` tinyint(1) unsigned NOT NULL DEFAULT '0',
  32. `zona_ajardinada` tinyint(1) unsigned NOT NULL DEFAULT '0',
  33. `fks_id_tbl_tipo_operacion` int(11) unsigned NOT NULL DEFAULT '0',
  34. `num_muelles_carga` int(10) unsigned DEFAULT NULL,
  35. `facha` int(10) unsigned DEFAULT NULL,
  36. `patio_maniobras` tinyint(1) unsigned NOT NULL DEFAULT '0',
  37. `acceso_trailers` tinyint(1) unsigned NOT NULL DEFAULT '0',
  38. `acceso_furgoneta` tinyint(1) unsigned NOT NULL DEFAULT '0',
  39. `puente_grua` tinyint(1) unsigned NOT NULL DEFAULT '0',
  40. `duchas` tinyint(1) unsigned NOT NULL DEFAULT '0',
  41. `aseos` tinyint(1) unsigned NOT NULL DEFAULT '0',
  42. `montacargas` tinyint(1) unsigned NOT NULL DEFAULT '0'
  43. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement