1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-16 05:54:53 +02:00
Files
cheatsheets/bookshelf-contrib.md
Rico Sta. Cruz 70ea6d8bed .
2014-02-25 18:32:14 +08:00

299 B

bookshelf-contrib.Scopes

class Books scopes: published: (q) -> q.where(published: true)

Books.published().fetchAll()

bookshelf-contrib.QueryProxy

Books.query().where(published: true) Books.where(published: true)

bookshelf-contrib.Migration

class Migration up: -> down: ->