Sha256: 9731b9a7f9e10f05797a011f38649313a81e1aa428d47d29870fe56fe192f2eb
Contents?: true
Size: 711 Bytes
Versions: 9
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Profiles::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('templates', __dir__) 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 migration_template 'create_tramway_profiles_social_networks.rb', 'db/migrate/create_tramway_profiles_social_networks.rb' end end end
Version data entries
9 entries across 9 versions & 1 rubygems