Sha256: c08a465ec4360eb2fd59b47d16d0c457e8c1a49f76f17100f0281a8ac535dde7
Contents?: true
Size: 735 Bytes
Versions: 39
Compression:
Stored size: 735 Bytes
Contents
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', __FILE__) 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 migration_template 'create_tramway_user_users.rb', 'db/migrate/create_tramway_user_users.rb' end end end
Version data entries
39 entries across 39 versions & 1 rubygems