Sha256: 3a452936f6db097a008978503f1a60e2f0d68c209c95f23f0ae1443d15075650

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

require 'rails/generators'
require 'tramway/core/generators/install_generator'

module Tramway::Event::Generators
  class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator
    include Rails::Generators::Migration
    source_root File.expand_path('../templates', __FILE__)

    def run_other_generators
    end

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

    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
      ]
      migrations.each do |migration|
        migration_template "#{migration}.rb", "db/migrate/#{migration}.rb"
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tramway-event-1.8.5 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8.4 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8.3 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8.2 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8.1.1 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8.1 lib/tramway/event/generators/install_generator.rb
tramway-event-1.8 lib/tramway/event/generators/install_generator.rb