Sha256: 6d1686ae7cb70ab7f520b7c7b26daf8e8b148a1deda4b85bd071b6ff3986e1f1
Contents?: true
Size: 802 Bytes
Versions: 5
Compression:
Stored size: 802 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Partner::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_partner_organizations, :create_tramway_partner_partnerships ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems