Sha256: b945daace69a388434941bfa163710730dd16233d1aece20d9b8d745ada18cf7
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
module Hanami module Sequel module CLI class Migrate < Hanami::CLI::Command argument :version, required: false, default: 'up', desc: 'Version of the migration (number, offset, timestamp, "up" or "down"). Default: "up"' def call(**options) Command.migrate(options) end end end module Command def self.migrate(**options) Hanami::Environment.new # load DATABASE_URL args = {} if (v = options[:version]) case when v == 'up' then; when v == 'down' then args[:target] = 0 else args[:target] = Integer(v) end end require 'sequel' ::Sequel.extension :migration db = ::Sequel.connect(ENV.fetch('DATABASE_URL'), loggers: Logger.new($stdout)) ::Sequel::Migrator.run(db, CLI.config.migrations, **args) end end end end Hanami::CLI.register 'sequel migrate', Hanami::Sequel::CLI::Migrate
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hanami-sequel-1.1.1 | lib/hanami/sequel/commands/migrate.rb |
hanami-sequel-1.1.0.1 | lib/hanami/sequel/commands/migrate.rb |