Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1_12062024_seed_defaults.sql 340 B

vor 8 Monaten
123456789101112131415161718192021222324252627
  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');