On Wednesday, February 11, 2015 at 4:39:38 PM UTC-8, Diego Bernardes wrote: > > Hi! > > Im trying to use sequel for the first time and im trying to include the > migration extension, but, i can't make it work, all the time give me this > error: > > Extension migration does not have specific support handling individual > databases > > What this means? > The database im connecting is postgresql >
You are probably doing: DB.extension :migration when you should be doing: Sequel.extension :migration Some extensions are specific to Database objects and should be loaded into the object via Sequel::Database#extension, some like the migration extension are general and loaded by Sequel.extension. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
