budu / lobos

A library to create and manipulate SQL database schemas with migrations support.
http://budu.github.com/lobos/
267 stars 56 forks source link

sqlite full text search #58

Open supercentenarian opened 11 years ago

supercentenarian commented 11 years ago

It would be nice to create sqlite virtual table: CREATE VIRTUAL TABLE docs USING fts3(title, body);

maybe like this?

(lobos/create 
      (lobos-schema/virtual-table :docs
                (lobos-schema/text :title)
                (lobos-schema/text :body)))))

thanks