Sha256: 8f21155acea7da5849434ede746727f0fdbf52f20e5e11fd73248f357976d139

Contents?: true

Size: 736 Bytes

Versions: 193

Compression:

Stored size: 736 Bytes

Contents

require 'rails/generators/active_record'
require 'active_support/core_ext/object/inclusion'

module ActiveRecord
  module Generators
    class SessionMigrationGenerator < Base
      argument :name, :type => :string, :default => "add_sessions_table"

      def create_migration_file
        migration_template "migration.rb", "db/migrate/#{file_name}.rb"
      end

      protected

        def session_table_name
          current_table_name = ActiveRecord::SessionStore::Session.table_name
          if current_table_name.in?(["sessions", "session"])
            current_table_name = (ActiveRecord::Base.pluralize_table_names ? 'session'.pluralize : 'session')
          end
          current_table_name
        end

    end
  end
end

Version data entries

193 entries across 162 versions & 15 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activerecord-3.2.22.5/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22.5 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22.4 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22.3 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22.2 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22.1 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.22 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.12/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.21 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.20 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.19 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.18 lib/rails/generators/active_record/session_migration/session_migration_generator.rb
activerecord-3.2.17 lib/rails/generators/active_record/session_migration/session_migration_generator.rb