Guest User

Untitled

a guest
Jan 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. async function brands(ctx) {
  2. const { rows } = await db.query('SELECT name FROM county.brands')
  3. ctx.body = {
  4. brands: rows
  5. }
  6. }
  7.  
  8. async function marks(ctx) {
  9. const { rows } = await db.query('SELECT product_type, mark_type, owner FROM county.marks')
  10. ctx.body = {
  11. marks: rows
  12. }
  13. }
Add Comment
Please, Sign In to add comment