Guest User

Untitled

a guest
Jan 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. from tropicalista.models.user import Loan
  2. from tropicalista.omdels import DBSession
  3.  
  4. def main():
  5. from tropicalista.models.user import Label
  6. labels = ['Cobrança', 'Customer Care', 'Judicial', 'Ouvidoria', 'Procon', 'Reclame aqui', 'Redes sociais']
  7.  
  8. for label in labels:
  9. new_label = Label(caption=label)
  10.  
  11. DBSession.add(new_label)
  12. DBSession.flush()
Add Comment
Please, Sign In to add comment