Here is my code: https://github.com/joevandyk/sequel-playground
On Jun 14, 4:04 pm, Joe Van Dyk <[email protected]> wrote: > $ bundle exec sequel -m migrations/ postgres://localhost/test > Error: Sequel::Migrator::Error: No target version available/usr/local/ > rvm/gems/ruby-1.9.2-p180-good/gems/sequel-3.24.1/lib/sequel/extensions/ > migration.rb:427:in `initialize' > > $ cat migrations/first.rb > Sequel.migration do > up do > create_table :items do > primary_key :id > String :name, :null => false > Float :price, :null => false > end > end > end > > I've tried both the published gem of sequel and the latest git > checkout of sequel -- same thing. Any ideas? -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
