Class: Tramway::Event::Generators::InstallGenerator

Inherits:
Generators::InstallGenerator
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/tramway/event/generators/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



15
16
17
18
# File 'lib/tramway/event/generators/install_generator.rb', line 15

def self.next_migration_number(path)
  next_migration_number = current_migration_number(path) + 1
  ActiveRecord::Migration.next_migration_number next_migration_number
end

Instance Method Details

#copy_migrationsObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/tramway/event/generators/install_generator.rb', line 20

def copy_migrations
  migrations = [
    :create_tramway_event_events,
    :add_photo_to_tramway_event_events,
    :create_tramway_event_participant_form_fields,
    :create_tramway_event_participants,
    :add_options_to_tramway_event_participant_form_fields,
    :add_position_to_tramway_event_participant_form_fields,
    :create_tramway_event_sections,
    :add_icon_to_tramway_event_sections,
    :add_position_to_tramway_event_sections,
    :add_status_to_tramway_event_events,
    :create_tramway_event_people,
    :create_tramway_event_people_sections,

    # NOTE must be removed until tramway-event 2.0
    :rename_tramway_event_people_sections_to_tramway_event_partakings,

    :add_position_to_tramway_event_partakings,
    :add_state_to_tramway_event_partakings,
    :add_more_fields_to_tramway_event_participants,

    # NOTE must be removed until tramway-event 2.0
    :rebuild_association_between_participant_and_partakings_to_polymorphic,

    :add_request_period_to_tramway_event_events,
    :add_description_to_tramway_event_people,

    :create_tramway_event_places,
    :create_tramway_event_events_places,
    :add_short_description_to_tramway_event_events,
    :create_tramway_event_actions,
    :add_reach_to_tramway_event_events,

    # NOTE must be removed until tramway-event 2.0
    :remove_status_from_tramway_event_events
  ]
  migrations.each do |migration|
    migration_template "#{migration}.rb", "db/migrate/#{migration}.rb"
  end
end

#run_other_generatorsObject



11
12
13
# File 'lib/tramway/event/generators/install_generator.rb', line 11

def run_other_generators
  generate 'tramway:partner:install'
end