Skip to content

Instantly share code, notes, and snippets.

@breim
Last active July 2, 2019 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breim/bc2773cdb87978bdee62dd0155f5e497 to your computer and use it in GitHub Desktop.
Save breim/bc2773cdb87978bdee62dd0155f5e497 to your computer and use it in GitHub Desktop.
# Entrar no console
$ adonis repl
# Inciar database
database = use('Database')
# Rodar a query
(await database.select('*').from('influencers'))
# Update
(await use('Database').table('users').update({ type: 'admin' }).where('id', 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment