Sha256: 9b849aeecd1ce029378bbc9f509fbe16edf05c3f573197e58108f51fb4ebf460
Contents?: true
Size: 891 Bytes
Versions: 11
Compression:
Stored size: 891 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::User::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('templates', __dir__) desc 'Add the migrations for User' def run_another_generators generate 'tramway:core:install' 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 = %i[ create_tramway_user_users add_phone_to_tramway_user_users ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end end end
Version data entries
11 entries across 11 versions & 1 rubygems