Class: Sequent::Migrations::Planner::Plan

Inherits:
Struct
  • Object
show all
Defined in:
lib/sequent/migrations/planner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#migrationsObject

Returns the value of attribute migrations

Returns:

  • (Object)

    the current value of migrations



6
7
8
# File 'lib/sequent/migrations/planner.rb', line 6

def migrations
  @migrations
end

#projectorsObject

Returns the value of attribute projectors

Returns:

  • (Object)

    the current value of projectors



6
7
8
# File 'lib/sequent/migrations/planner.rb', line 6

def projectors
  @projectors
end

Instance Method Details

#alter_tablesObject



11
12
13
# File 'lib/sequent/migrations/planner.rb', line 11

def alter_tables
  migrations.select { |m| m.instance_of?(AlterTable) }
end

#empty?Boolean

Returns:



15
16
17
# File 'lib/sequent/migrations/planner.rb', line 15

def empty?
  migrations.empty?
end

#replay_tablesObject



7
8
9
# File 'lib/sequent/migrations/planner.rb', line 7

def replay_tables
  migrations.select { |m| m.instance_of?(ReplayTable) }
end