Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

28 líneas
340 B

  1. INSERT INTO loan_type (
  2. branch_id,
  3. user_id,
  4. name
  5. )
  6. VALUES (NULL, NULL, 'Conventional');
  7. INSERT INTO loan_type (
  8. branch_id,
  9. user_id,
  10. name
  11. )
  12. VALUES (NULL, NULL, 'FHA');
  13. INSERT INTO loan_type (
  14. branch_id,
  15. user_id,
  16. name
  17. )
  18. VALUES (NULL, NULL, 'USDA');
  19. INSERT INTO loan_type (
  20. branch_id,
  21. user_id,
  22. name
  23. )
  24. VALUES (NULL, NULL, 'VA');