mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-08-16 14:04:47 +02:00
299 B
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: ->