class Sequent::Migrations::Projectors
Public Class Methods
migrations_between(old, new)
click to toggle source
# File lib/sequent/migrations/projectors.rb, line 15 def self.migrations_between(old, new) Planner.new(versions).plan(old, new) end
version()
click to toggle source
# File lib/sequent/migrations/projectors.rb, line 11 def self.version fail "Define your own #{name} class that extends this class and implements this method" end
versions()
click to toggle source
# File lib/sequent/migrations/projectors.rb, line 7 def self.versions fail "Define your own #{name} class that extends this class and implements this method" end